From b3cd53b26caf67714d3f5c8506e213df91532fbe Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Wed, 29 Jul 2020 19:35:29 -0400 Subject: [PATCH] added missing close paranthesis for addtogroup --- hashing/linear_probing_hash_table.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hashing/linear_probing_hash_table.cpp b/hashing/linear_probing_hash_table.cpp index abde39783..c5861522f 100644 --- a/hashing/linear_probing_hash_table.cpp +++ b/hashing/linear_probing_hash_table.cpp @@ -210,6 +210,9 @@ void removalInfo(int key) { display(); } } // namespace linear_probing +/** + * @} + */ using linear_probing::Entry; using linear_probing::table;