From 4af39db0ce050b7f88a8bba95b1ea6d819b1e9fa Mon Sep 17 00:00:00 2001 From: David Leal Date: Mon, 5 Jul 2021 18:48:42 -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 24fbffe60..5a24e97b1 100644 --- a/search/sublist_search.cpp +++ b/search/sublist_search.cpp @@ -43,7 +43,7 @@ namespace sublist_search { */ struct Node { uint32_t data = 0; ///< the key/value of the node - Node *next{}; // Pointer to the next node + Node *next{}; ///< pointer to the next node }; /**