diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-01-10 13:13:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 13:13:27 (GMT) |
commit | c92a473a71a0c395df57d31cd49900057da3c25b (patch) | |
tree | 0fe41564f65a5541b4bc4d5d0ac2c1b6318a494e /Doc/glossary.rst | |
parent | b4a6bbdd7de8bdc43ea62ed4bbb610bf1cd64278 (diff) | |
download | cpython-c92a473a71a0c395df57d31cd49900057da3c25b.zip cpython-c92a473a71a0c395df57d31cd49900057da3c25b.tar.gz cpython-c92a473a71a0c395df57d31cd49900057da3c25b.tar.bz2 |
[3.11] gh-113664: Improve style of Big O notation (GH-113695) (GH-113910)
Use cursive to make it looking like mathematic formulas.
(cherry picked from commit a8629816c6c0e6770248a60529fd7c9ba08aad55)
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index ec6cec3..7dd178d 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -741,7 +741,7 @@ Glossary list A built-in Python :term:`sequence`. Despite its name it is more akin to an array in other languages than to a linked list since access to - elements is O(1). + elements is *O*\ (1). list comprehension A compact way to process all or part of the elements in a sequence and |