summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/ini.rst
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 04:26:35 -0700
commit315e469540afeba4bffe7bafb1364a7bab059a24 (patch)
tree56f1ccbc94a9e7974eb302755cfca6251553ff4b /docs/quick_tutorial/ini.rst
parent50b8b42b7da17d20534e5fd21905c8fe56b68069 (diff)
downloadpyramid-315e469540afeba4bffe7bafb1364a7bab059a24.tar.gz
pyramid-315e469540afeba4bffe7bafb1364a7bab059a24.tar.bz2
pyramid-315e469540afeba4bffe7bafb1364a7bab059a24.zip
Use proper case for Setuptools as a library name.
Change Setuptools to a glossary term where useful.
Diffstat (limited to 'docs/quick_tutorial/ini.rst')
-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: