df6ba7eaf295 — Chris Cannam 3 years ago
Correction - now only "most of" the same api
1 files changed, 4 insertions(+), 4 deletions(-)

M README.md
M README.md +4 -4
@@ 181,10 181,10 @@ This library contains implementations of
 double-ended queue containers. These are immutable containers like the
 Basis vector with the addition of update, append, and pop-from-end
 operations which return new (partly shared) containers. The queue
-supports all of the same operations plus prepend and pop-from-start,
-but its plain iteration (`foldl`) is not as fast as the array. For
-both containers, all of the update, append, prepend, and pop
-operations take time independent of the container size.
+supports most of the same operations as the array plus prepend and
+pop-from-start, but its plain iteration (`foldl`) is not as fast as
+the array. For both containers, all of the update, append, prepend,
+and pop operations take time independent of the container size.
 
 Note that these containers are competitive only if both immutability
 and general updating are desired. A vector is faster to tabulate and