summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS.txt3
-rw-r--r--docs/glossary.rst2
-rw-r--r--docs/quick_tutorial/package/setup.py3
3 files changed, 6 insertions, 2 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 593a078f2..0c18d600f 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -328,3 +328,6 @@ Contributors
- Benjamin Gmurczyk, 2018/06/14
- Stephen Martin, 2018/09/04
+
+- Kuzma Leshakov, 2018/09/07
+
diff --git a/docs/glossary.rst b/docs/glossary.rst
index b05344ae9..587e7c63e 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -853,7 +853,7 @@ Glossary
Localization
The process of displaying the user interface of an
internationalized application in a particular language or
- cultural context. Often shortened to "l10" (because the word
+ cultural context. Often shortened to "l10n" (because the word
"localization" is L, 10 letters, then N).
.. seealso::
diff --git a/docs/quick_tutorial/package/setup.py b/docs/quick_tutorial/package/setup.py
index bcfcfa684..77fedee2d 100644
--- a/docs/quick_tutorial/package/setup.py
+++ b/docs/quick_tutorial/package/setup.py
@@ -2,8 +2,9 @@ from setuptools import setup
requires = [
'pyramid',
+ 'waitress',
]
setup(name='tutorial',
install_requires=requires,
-) \ No newline at end of file
+)