From 7bcf129d33f5900cc7272e7f05720aed3017b36e Mon Sep 17 00:00:00 2001 From: David Leal Date: Mon, 5 Jul 2021 18:40:08 -0500 Subject: [PATCH] Apply suggestions from code review --- search/sublist_search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/sublist_search.cpp b/search/sublist_search.cpp index 484c2677e..24fbffe60 100644 --- a/search/sublist_search.cpp +++ b/search/sublist_search.cpp @@ -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 };