summaryrefslogtreecommitdiff
path: root/docs/narr/urldispatch.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2013-03-12 13:44:12 -0700
committerMichael Merickel <michael@merickel.org>2013-03-12 13:44:12 -0700
commit22814bb5613546fee0aeec59526ec9c10ae7ac6b (patch)
tree93019973b2267877e38c7e518c1616fb704f7df7 /docs/narr/urldispatch.rst
parent40aeaa4d789f068ddaa10768068f2b88d075960f (diff)
parent2dfdecd4c7a8255702aa08f2807b4a3341b270f7 (diff)
downloadpyramid-22814bb5613546fee0aeec59526ec9c10ae7ac6b.tar.gz
pyramid-22814bb5613546fee0aeec59526ec9c10ae7ac6b.tar.bz2
pyramid-22814bb5613546fee0aeec59526ec9c10ae7ac6b.zip
Merge pull request #888 from tshepang/fixes
miscellaneous doc fixes
Diffstat (limited to 'docs/narr/urldispatch.rst')
-rw-r--r--docs/narr/urldispatch.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst
index 2a7adea81..b8aa9280f 100644
--- a/docs/narr/urldispatch.rst
+++ b/docs/narr/urldispatch.rst
@@ -70,8 +70,8 @@ via its ``route_name`` predicate, that view callable will always be found and
invoked when the associated route pattern matches during a request.
More commonly, you will not use any ``add_view`` statements in your project's
-"setup" code, instead only using ``add_route`` statements using a
-:term:`scan` for to associate view callables with routes. For example, if
+"setup" code. You will instead use ``add_route`` statements, and use a
+:term:`scan` to associate view callables with routes. For example, if
this is a portion of your project's ``__init__.py``:
.. code-block:: python