summaryrefslogtreecommitdiff
path: root/docs/narr/traversal.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-05-14 05:42:41 +0000
committerChris McDonough <chrism@agendaless.com>2009-05-14 05:42:41 +0000
commit4ad6d42d9422c012329ba17f8d7c4ec9474f1dbc (patch)
tree25b90e0d5be704fc4af80e422ccc7df037a156d5 /docs/narr/traversal.rst
parent17b15e71c865b9cd3242d33137895b4ce3f540e6 (diff)
downloadpyramid-4ad6d42d9422c012329ba17f8d7c4ec9474f1dbc.tar.gz
pyramid-4ad6d42d9422c012329ba17f8d7c4ec9474f1dbc.tar.bz2
pyramid-4ad6d42d9422c012329ba17f8d7c4ec9474f1dbc.zip
General cleanup.
Diffstat (limited to 'docs/narr/traversal.rst')
-rw-r--r--docs/narr/traversal.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/narr/traversal.rst b/docs/narr/traversal.rst
index d4c77288b..748800235 100644
--- a/docs/narr/traversal.rst
+++ b/docs/narr/traversal.rst
@@ -62,10 +62,10 @@ When a user requests a page from your :mod:`repoze.bfg` -powered
application, the system uses this algorithm to determine which Python
code to execute:
-#. The request for the page is presented to :mod:`repoze.bfg`'s
- "router" in terms of a standard :term:`WSGI` request, which is
- represented by a WSGI environment and a ``start_response``
- callable.
+#. The request for the page is presented to the :mod:`repoze.bfg`
+ "router" in terms of a standard :term:`WSGI` request, which is
+ represented by a WSGI environment and a ``start_response``
+ callable.
#. The router creates a :term:`WebOb` request object based on the
WSGI environment.
@@ -246,7 +246,7 @@ Let's say that question is answered "here you go, here'a a bit of code
that is willing to deal with that case", and returns a :term:`view`.
It is passed the "biz" object as the "context" and the current
:term:`WebOb` :term:`request` as the "request". It returns a
-term:`response`.
+:term:`response`.
There are two special cases: