Apply suggestions from code review

This commit is contained in:
David Leal
2021-07-05 18:40:08 -05:00
committed by GitHub
parent 3e5f328ab9
commit 7bcf129d33

View File

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