diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-01-12 06:50:45 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-01-12 06:50:45 (GMT) |
commit | 22b1050672c21600224afcf8d94e49c49e3affa5 (patch) | |
tree | 5afeb0aa1274d40e9e4dbb0fafea58790c9e4dd2 | |
parent | 9c99fd163d5ca9bcc0b7ddd0d1e3b8717a63237c (diff) | |
download | cpython-22b1050672c21600224afcf8d94e49c49e3affa5.zip cpython-22b1050672c21600224afcf8d94e49c49e3affa5.tar.gz cpython-22b1050672c21600224afcf8d94e49c49e3affa5.tar.bz2 |
Lexical Analysis ref doc: Fix a typo in the string concatenation internal link (GH-5157) (GH-5160)
In lexical analysis reference documentation, the internal link to
the string literal concatenation section was written as`.. _string-catenation:`.
Changed that to `.. _string-concatenation:`.
(cherry picked from commit 3764bb075a73074f55568fc7c37adde6054eb59a)
-rw-r--r-- | Doc/reference/lexical_analysis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index c0f2ee5..7ad8394 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -571,7 +571,7 @@ that a single backslash followed by a newline is interpreted as those two characters as part of the literal, *not* as a line continuation. -.. _string-catenation: +.. _string-concatenation: String literal concatenation ---------------------------- |