summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 32e569c..cc60384 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
blist: a list-like type with better performance
===============================================
-The ``blist`` is a drop-in replacement for the Python list the provides
+The ``blist`` is a drop-in replacement for the Python list that provides
better performance when modifying large lists. The blist package also
provides ``sortedlist``, ``sortedset``, ``weaksortedlist``,
``weaksortedset``, ``sorteddict``, and ``btuple`` types.
@@ -11,7 +11,7 @@ Full documentation is at the link below:
http://stutzbachenterprises.com/blist-doc/
Python's built-in list is a dynamically-sized array; to insert or
-removal an item from the beginning or middle of the list, it has to
+remove an item from the beginning or middle of the list, it has to
move most of the list in memory, i.e., O(n) operations. The blist
uses a flexible, hybrid array/tree structure and only needs to move a
small portion of items in memory, specifically using O(log n)
@@ -66,7 +66,7 @@ The blist package provides other data structures based on the blist:
- sortedlist
- sortedset
- weaksortedlist
-- weaksorteset
+- weaksortedset
- sorteddict
- btuple