summaryrefslogtreecommitdiff
path: root/sphinx/writers
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-10-24 18:12:45 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-10-24 18:12:45 +0900
commit445b9515c126aab84f14251e57e289cb12121754 (patch)
tree7032b82311cff77d74b66537499075480e7a8f5f /sphinx/writers
parente4e5ee33307abdc65fba6244ae7349987ddae529 (diff)
parent071b14884c90e807827079ee18b1677ea71833e6 (diff)
downloadsphinx-git-445b9515c126aab84f14251e57e289cb12121754.tar.gz
Merge branch '3.x'
Diffstat (limited to 'sphinx/writers')
-rw-r--r--sphinx/writers/texinfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py
index 9ed7673fa..38b3207b1 100644
--- a/sphinx/writers/texinfo.py
+++ b/sphinx/writers/texinfo.py
@@ -368,7 +368,7 @@ class TexinfoTranslator(SphinxTranslator):
"""Return an escaped string suitable for use as an argument
to a Texinfo command."""
s = self.escape(s)
- # commas are the argument delimeters
+ # commas are the argument delimiters
s = s.replace(',', '@comma{}')
# normalize white space
s = ' '.join(s.split()).strip()