aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 72aaf21..3c1b8a0 100644
--- a/README.rst
+++ b/README.rst
@@ -14,9 +14,9 @@ used in Clojure, Scala, Haskell, and other functional languages.
This implementation is used in CPython 3.7 in the ``contextvars``
module (see PEP 550 and PEP 567 for more details).
-Immutable mappings based on HAMT have O(log\ :sub:`32`\ N)
-performance for both ``set()`` and ``get()`` operations, which is
-essentially O(1) for relatively small mappings.
+Immutable mappings based on HAMT have O(log N) performance for both
+``set()`` and ``get()`` operations, which is essentially O(1) for
+relatively small mappings.
Below is a visualization of a simple get/set benchmark comparing
HAMT to an immutable mapping implemented with a Python dict