From ce6075892cbd5e778c613eae233f8363b3744e7d Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 27 Sep 2024 12:00:07 -0700 Subject: [PATCH] Fix typo in InternalDocs/string_interning.md --- InternalDocs/string_interning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/string_interning.md b/InternalDocs/string_interning.md index 358e2c070cd5fa..e0d20632516142 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