summaryrefslogtreecommitdiff
path: root/docutils
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2019-12-30 14:11:53 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2019-12-30 14:11:53 +0000
commit6afdbc6b756c3c15033de5cf2af1efde844906e5 (patch)
tree9e5be8b7fe7bb0c76ef28e0c8e949d9876eb8ebb /docutils
parentb722195c698fac59d1740e9d3a6c9ecb8c3422d1 (diff)
downloaddocutils-6afdbc6b756c3c15033de5cf2af1efde844906e5.tar.gz
typos in comments
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8450 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils')
-rw-r--r--docutils/docutils/writers/manpage.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/docutils/docutils/writers/manpage.py b/docutils/docutils/writers/manpage.py
index 570f5a706..77863c5bb 100644
--- a/docutils/docutils/writers/manpage.py
+++ b/docutils/docutils/writers/manpage.py
@@ -37,7 +37,7 @@ and
AUTHOR .
-A unix-like system keeps an index of the DESCRIPTIONs, which is accesable
+A unix-like system keeps an index of the DESCRIPTIONs, which is accessible
by the command whatis or apropos.
"""
@@ -448,7 +448,7 @@ class Translator(nodes.NodeVisitor):
pass
def visit_block_quote(self, node):
- # BUG/HACK: indent alway uses the _last_ indention,
+ # BUG/HACK: indent always uses the _last_ indention,
# thus we need two of them.
self.indent(BLOCKQOUTE_INDENT)
self.indent(0)
@@ -583,7 +583,7 @@ class Translator(nodes.NodeVisitor):
def visit_document(self, node):
# no blank line between comment and header.
self.head.append(self.comment(self.document_start).rstrip()+'\n')
- # writing header is postboned
+ # writing header is postponed
self.header_written = 0
def depart_document(self, node):
@@ -830,7 +830,7 @@ class Translator(nodes.NodeVisitor):
self.body.append(self.defs['literal'][1])
def visit_literal_block(self, node):
- # BUG/HACK: indent alway uses the _last_ indention,
+ # BUG/HACK: indent always uses the _last_ indention,
# thus we need two of them.
self.indent(LITERAL_BLOCK_INDENT)
self.indent(0)
@@ -965,7 +965,7 @@ class Translator(nodes.NodeVisitor):
# ``.PP`` : Start standard indented paragraph.
# ``.LP`` : Start block paragraph, all except the first.
# ``.P [type]`` : Start paragraph type.
- # NOTE dont use paragraph starts because they reset indentation.
+ # NOTE do not use paragraph starts because they reset indentation.
# ``.sp`` is only vertical space
self.ensure_eol()
if not self.first_child(node):