summaryrefslogtreecommitdiff
path: root/docs/narr/paste.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 02:40:23 -0700
commitf868a98cdc4bec0ce10d18b66af1687f3e3a1bbb (patch)
treebfd0d46890d413427540092cf30dae3a3141fcff /docs/narr/paste.rst
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/narr/paste.rst')
-rw-r--r--docs/narr/paste.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/paste.rst b/docs/narr/paste.rst
index 8a0d505b3..ac8f7fdca 100644
--- a/docs/narr/paste.rst
+++ b/docs/narr/paste.rst
@@ -48,7 +48,7 @@ The line in ``[app:main]`` above that says ``use = egg:myproject`` is actually
shorthand for a longer spelling: ``use = egg:myproject#main``. The ``#main``
part is omitted for brevity, as ``#main`` is a default defined by PasteDeploy.
``egg:myproject#main`` is a string which has meaning to PasteDeploy. It points
-at a :term:`setuptools` :term:`entry point` named ``main`` defined in the
+at a :term:`Setuptools` :term:`entry point` named ``main`` defined in the
``myproject`` project.
Take a look at the generated ``setup.py`` file for this project.