From 40ab1fda6ad230616df26df28b4efd63c61afd0e Mon Sep 17 00:00:00 2001 From: Jessica James Date: Wed, 21 Dec 2016 22:22:29 -0500 Subject: [PATCH] Corrected doc for remove() --- Jupiter/Hash_Table.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jupiter/Hash_Table.h b/Jupiter/Hash_Table.h index 5f58e12..0b3af39 100644 --- a/Jupiter/Hash_Table.h +++ b/Jupiter/Hash_Table.h @@ -84,10 +84,10 @@ namespace Jupiter bool set(const InKeyT &in_key); /** - * @brief Removes an entry from the bucket + * @brief Removes an entry from the table * - * @param in_key Key of the entry to search for - * @return Value of the entry which was removed on success, nullptr otherwise + * @param in_key Key of the entry to remove + * @return True if an entry was removed, false otherwise */ bool remove(const InKeyT &in_key);