From c052f9f84c85a75d6e77e23ac91beb4da24ee9d1 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 6 Sep 2016 22:51:16 -0400 Subject: [PATCH] intrusive_list: Amend doxygen parameter documentation --- src/common/intrusive_list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/intrusive_list.h b/src/common/intrusive_list.h index fe24fa6d..c4c5cb38 100644 --- a/src/common/intrusive_list.h +++ b/src/common/intrusive_list.h @@ -215,7 +215,7 @@ public: /** * Removes a node from this list - * @param node An iterator that points to the node to remove from list. + * @param it An iterator that points to the node to remove from list. */ pointer remove(iterator& it) { DEBUG_ASSERT(it != end()); @@ -234,7 +234,7 @@ public: /** * Removes a node from this list - * @param node A constant iterator that points to the node to remove from list. + * @param it A constant iterator that points to the node to remove from list. */ pointer remove(const iterator& it) { iterator copy = it;