summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2024-09-27 19:31:59 (GMT)
committerGitHub <noreply@github.com>2024-09-27 19:31:59 (GMT)
commit81a253b929258f17e89adc1aeb2c2ccdbcdc2945 (patch)
tree015736f3dd5d8073b6076571dd5e3ee2b5a2b4d8
parent0881e2d3b1212d988733f1d3acca4011ce5e6280 (diff)
downloadcpython-81a253b929258f17e89adc1aeb2c2ccdbcdc2945.zip
cpython-81a253b929258f17e89adc1aeb2c2ccdbcdc2945.tar.gz
cpython-81a253b929258f17e89adc1aeb2c2ccdbcdc2945.tar.bz2
Fix typo in InternalDocs/string_interning.md (GH-124699)
-rw-r--r--InternalDocs/string_interning.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/InternalDocs/string_interning.md b/InternalDocs/string_interning.md
index 358e2c0..e0d2063 100644
--- a/InternalDocs/string_interning.md
+++ b/InternalDocs/string_interning.md
@@ -72,7 +72,7 @@ We currently also immortalize strings contained in code objects and similar,
specifically in the compiler and in `marshal`.
These are “close enough” to immortal: even in use cases like hot reloading
or `eval`-ing user input, the number of distinct identifiers and string
-constants expected to stay low.
+constants is expected to stay low.
## Internal API