From 0c75aed0fe920d3feeb2ea0bc2d5db9da4e20249 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 25 Sep 2015 11:59:20 +0100 Subject: [PATCH] Fixed comment --- deque.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deque.h b/deque.h index 452cc568..99f3274b 100644 --- a/deque.h +++ b/deque.h @@ -50,7 +50,7 @@ namespace etl { //*************************************************************************** /// A fixed capacity double ended queue. - ///\node The deque allocates one more element than the specified maximum size. + ///\note The deque allocates one more element than the specified maximum size. ///\tparam T The type of items this deque holds. ///\tparam MAX_SIZE_ The capacity of the deque ///\ingroup deque