From e89d8a623119957e45440645cc536b28909be920 Mon Sep 17 00:00:00 2001 From: David Capello Date: Sun, 11 Mar 2012 22:15:01 -0300 Subject: [PATCH] Minor fix to remove_from_container's comment. --- src/base/remove_from_container.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/base/remove_from_container.h b/src/base/remove_from_container.h index d0dd9441c..7a78f1ca0 100644 --- a/src/base/remove_from_container.h +++ b/src/base/remove_from_container.h @@ -9,8 +9,7 @@ namespace base { -// Removes the first ocurrence of the specified element from the STL -// container. +// Removes all ocurrences of the specified element from the STL container. template void remove_from_container(ContainerType& container, typename ContainerType::const_reference element)