Docs: Clarification of CONTAINER_OF

This is a small reordering of the CONTAINER_OF description to
clarify its purpose.

Signed-off-by: Chris Pearson <ctpearson@gmail.com>
This commit is contained in:
Chris Pearson 2021-10-27 12:46:43 -07:00 committed by Anas Nashif
commit a6f8fc326c

View file

@ -124,7 +124,7 @@ extern "C" {
((ptr) && ((ptr) >= &array[0] && (ptr) < &array[ARRAY_SIZE(array)]))
/**
* @brief Get a pointer to a container structure from an element
* @brief Get a pointer to a structure containing the element
*
* Example:
*