summaryrefslogtreecommitdiff
path: root/sphinx/cmd/quickstart.py
diff options
context:
space:
mode:
authorÁlvaro Mondéjar <mondejar1994@gmail.com>2020-05-09 14:44:39 +0200
committerÁlvaro Mondéjar <mondejar1994@gmail.com>2020-05-09 14:44:39 +0200
commit62b44e6456183a26bfa8f3b38cf6716a2e5a674c (patch)
treef104491164a72971cb7241206ae7c88524490fcd /sphinx/cmd/quickstart.py
parentea81d56b30ec7841d3460686062810d1396a6a62 (diff)
downloadsphinx-git-62b44e6456183a26bfa8f3b38cf6716a2e5a674c.tar.gz
Fix double space inconsistences in code, CHANGES and translations.
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r--sphinx/cmd/quickstart.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py
index 29d2e8187..0c9020bd5 100644
--- a/sphinx/cmd/quickstart.py
+++ b/sphinx/cmd/quickstart.py
@@ -275,7 +275,7 @@ def ask_user(d: Dict) -> None:
print(__('Sphinx has the notion of a "version" and a "release" for the\n'
'software. Each version can have multiple releases. For example, for\n'
'Python the version is something like 2.5 or 3.0, while the release is\n'
- 'something like 2.5.1 or 3.0a1. If you don\'t need this dual structure,\n'
+ 'something like 2.5.1 or 3.0a1. If you don\'t need this dual structure,\n'
'just set both to the same value.'))
d['version'] = do_prompt(__('Project version'), '', allow_empty)
if 'release' not in d:
@@ -296,7 +296,7 @@ def ask_user(d: Dict) -> None:
if 'suffix' not in d:
print()
print(__('The file name suffix for source files. Commonly, this is either ".txt"\n'
- 'or ".rst". Only files with this suffix are considered documents.'))
+ 'or ".rst". Only files with this suffix are considered documents.'))
d['suffix'] = do_prompt(__('Source file suffix'), '.rst', suffix)
if 'master' not in d: