Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEisuke Kawashima <e-kwsm@users.noreply.github.com>2021-07-07 19:29:38 +0300
committerEisuke Kawashima <e-kwsm@users.noreply.github.com>2021-07-08 02:16:22 +0300
commit652ebf1bf56f7e35a3be657244b2f6a863cb78d7 (patch)
tree4ea34f2d7f58b65cbeac5bf497010eece7bfe23e /sphinx/writers
parentb09acabf0010ca95bab6f89012bb0e367cc1248e (diff)
Fix typo
Diffstat (limited to 'sphinx/writers')
-rw-r--r--sphinx/writers/latex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py
index 408a6c74c..18d059584 100644
--- a/sphinx/writers/latex.py
+++ b/sphinx/writers/latex.py
@@ -1225,7 +1225,7 @@ class LaTeXTranslator(SphinxTranslator):
pass
def depart_hlistcol(self, node: Element) -> None:
- # \columnbreak would guarantee same columns as in html ouput. But
+ # \columnbreak would guarantee same columns as in html output. But
# some testing with long items showed that columns may be too uneven.
# And in case only of short items, the automatic column breaks should
# match the ones pre-computed by the hlist() directive.
@@ -1890,7 +1890,7 @@ class LaTeXTranslator(SphinxTranslator):
self.context[-1] += 1
def visit_option_argument(self, node: Element) -> None:
- """The delimiter betweeen an option and its argument."""
+ """The delimiter between an option and its argument."""
self.body.append(node.get('delimiter', ' '))
def depart_option_argument(self, node: Element) -> None: