intrusive_list: Amend doxygen parameter documentation

This commit is contained in:
Lioncash 2016-09-06 22:51:16 -04:00
parent 1c4868ccce
commit c052f9f84c

View file

@ -215,7 +215,7 @@ public:
/** /**
* Removes a node from this list * 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) { pointer remove(iterator& it) {
DEBUG_ASSERT(it != end()); DEBUG_ASSERT(it != end());
@ -234,7 +234,7 @@ public:
/** /**
* Removes a node from this list * 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) { pointer remove(const iterator& it) {
iterator copy = it; iterator copy = it;