From 63ca7dcff113c0acd9acc030a296516cd39fbdb6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Tue, 24 Jul 2018 18:02:28 -0400 Subject: [PATCH] core: fix typos in doc of CircularArray MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/core/collection/circular_array.nit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/core/collection/circular_array.nit b/lib/core/collection/circular_array.nit index 9419853..1cc757b 100644 --- a/lib/core/collection/circular_array.nit +++ b/lib/core/collection/circular_array.nit @@ -19,11 +19,11 @@ import array # Efficient data structure to access both end of the sequence. # -# A circular array offers efficient random access, -# efficient manipulation for both ends of the structure (push, pop, ) and +# A circular array offers efficient random access, efficient manipulation +# at both ends of the structure (push, pop, shift and unshift) and # automatic amortized growth. # -# Therefore it can be used as is or as and efficient queue (FIFO/LIFO) +# Therefore it can be used as is or as an efficient queue (FIFO/LIFO). class CircularArray[E] super Sequence[E] -- 1.7.9.5