one liner docs added

This commit is contained in:
foo290
2021-07-05 07:27:05 +05:30
parent 0c8d149fc6
commit 95b362f3b6

View File

@@ -42,8 +42,8 @@ namespace sublist_search {
* @brief A Node structure representing a single link Node in a linked list * @brief A Node structure representing a single link Node in a linked list
*/ */
struct Node { struct Node {
uint32_t data = 0; uint32_t data = 0; // The key/value of the node
Node *next{}; Node *next{}; // Pointer to the next node
}; };
/** /**