aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Keefe <8655118+MisterKeefe@users.noreply.github.com>2021-02-09 17:09:32 +0000
committerGitHub <noreply@github.com>2021-02-09 09:09:32 -0800
commit76e491cf407d598734d677a912fbc01b4c46a580 (patch)
tree566db46cfbe6f731064af38ed911d235f2774a20
parent45105ecd8b56a4d88dbcb380fcb8ff4b9cc7b19c (diff)
downloadimmutables-76e491cf407d598734d677a912fbc01b4c46a580.tar.gz
immutables-76e491cf407d598734d677a912fbc01b4c46a580.zip
Make PEP references hyperlinks (#32)
-rw-r--r--README.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index e62545e..4132bc0 100644
--- a/README.rst
+++ b/README.rst
@@ -12,7 +12,8 @@ An immutable mapping type for Python.
The underlying datastructure is a Hash Array Mapped Trie (HAMT)
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).
+module (see `PEP 550 <https://www.python.org/dev/peps/pep-0550/>`_ and
+`PEP 567 <https://www.python.org/dev/peps/pep-0567/>`_ for more details).
Immutable mappings based on HAMT have O(log N) performance for both
``set()`` and ``get()`` operations, which is essentially O(1) for