summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/glossary.rst8
-rw-r--r--docs/narr/commandline.rst4
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index e15d28fa5..2d51bf795 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -165,7 +165,7 @@ Glossary
An object representing a node in the :term:`resource tree` of an
application. If :term:`traversal` is used, a resource is an element in
the resource tree traversed by the system. When traversal is used, a
- resource becomes the :term:`context` of a :term:`view`. If :term:`url
+ resource becomes the :term:`context` of a :term:`view`. If :term:`URL
dispatch` is used, a single resource is generated for each request and
is used as the context resource of a view.
@@ -405,13 +405,13 @@ Glossary
the Routes syntax (which was inspired by Ruby On Rails pattern syntax).
route
- A single pattern matched by the :term:`url dispatch` subsystem,
+ A single pattern matched by the :term:`URL dispatch` subsystem,
which generally resolves to a :term:`root factory` (and then
ultimately a :term:`view`).
.. seealso::
- See also :term:`url dispatch`.
+ See also :term:`URL dispatch`.
route configuration
Route configuration is the act of associating request parameters with a
@@ -912,7 +912,7 @@ Glossary
:meth:`pyramid.config.Configurator.add_route` and
:meth:`pyramid.config.Configurator.add_view` to make it more convenient
to register a collection of views as a single class when using
- :term:`url dispatch`. View handlers ship as part of the
+ :term:`URL dispatch`. View handlers ship as part of the
:term:`pyramid_handlers` add-on package.
Deployment settings
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst
index 962193ec3..21b2a0839 100644
--- a/docs/narr/commandline.rst
+++ b/docs/narr/commandline.rst
@@ -1006,7 +1006,7 @@ top-level directory, your ``setup.py`` file will look something like this:
requires = ['pyramid', 'pyramid_debugtoolbar']
tests_require = [
- 'WebTest >= 1.3.1',
+ 'WebTest',
'pytest',
'pytest-cov',
]
@@ -1073,7 +1073,7 @@ The result will be something like:
requires = ['pyramid', 'pyramid_debugtoolbar']
tests_require = [
- 'WebTest >= 1.3.1',
+ 'WebTest',
'pytest',
'pytest-cov',
]