summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-10-07 02:40:23 -0700
committerSteve Piercy <web@stevepiercy.com>2018-10-07 02:40:23 -0700
commitf868a98cdc4bec0ce10d18b66af1687f3e3a1bbb (patch)
treebfd0d46890d413427540092cf30dae3a3141fcff /docs/quick_tutorial
parent3c07c6517434f7ea64555a71b578beb7ddabe74a (diff)
downloadpyramid-f868a98cdc4bec0ce10d18b66af1687f3e3a1bbb.tar.gz
pyramid-f868a98cdc4bec0ce10d18b66af1687f3e3a1bbb.tar.bz2
pyramid-f868a98cdc4bec0ce10d18b66af1687f3e3a1bbb.zip
Use proper case for Setuptools as a library name.
Change Setuptools to a glossary term where useful.
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/ini.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/ini.rst b/docs/quick_tutorial/ini.rst
index 6477b8e64..90f66009c 100644
--- a/docs/quick_tutorial/ini.rst
+++ b/docs/quick_tutorial/ini.rst
@@ -13,7 +13,7 @@ Background
Pyramid has a first-class concept of :ref:`configuration <configuration_narr>` distinct from code.
This approach is optional, but its presence makes it distinct from other Python web frameworks.
-It taps into Python's Setuptools library, which establishes conventions for installing and providing ":term:`entry point`\ s" for Python projects.
+It taps into Python's :term:`Setuptools` library, which establishes conventions for installing and providing ":term:`entry point`\ s" for Python projects.
Pyramid uses an :term:`entry point` to let a Pyramid application know where to find the WSGI app.
@@ -38,7 +38,7 @@ Steps
cd ..; cp -r package ini; cd ini
-#. Our ``ini/setup.py`` needs a setuptools :term:`entry point` in the ``setup()`` function:
+#. Our ``ini/setup.py`` needs a :term:`Setuptools` :term:`entry point` in the ``setup()`` function:
.. literalinclude:: ini/setup.py
:linenos: