summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-05-27 21:42:22 +0000
committerChris McDonough <chrism@agendaless.com>2009-05-27 21:42:22 +0000
commit64b2942bfe6431e97fc41fd2fadd26c87ac67a5a (patch)
treec360b7f8c7a477e1cfa20b9bfd1decc6dd93bf91 /docs/narr
parent70e3f1d7efaa331e4c201b23582af6d6c5246fe5 (diff)
downloadpyramid-64b2942bfe6431e97fc41fd2fadd26c87ac67a5a.tar.gz
pyramid-64b2942bfe6431e97fc41fd2fadd26c87ac67a5a.tar.bz2
pyramid-64b2942bfe6431e97fc41fd2fadd26c87ac67a5a.zip
Don't mix the streams.
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/traversal.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/traversal.rst b/docs/narr/traversal.rst
index 8eba623e4..b8076368a 100644
--- a/docs/narr/traversal.rst
+++ b/docs/narr/traversal.rst
@@ -211,8 +211,8 @@ Using the "view name" ("baz") and the type, it asks the
:term:`application registry` (configured separately, via
``configure.zcml``) this question:
- - Please find me a :term:`view` (aka *controller* in some religions)
- with the name "baz" that can be used for the type ``IBar``.
+ - Please find me a :term:`view` with the name "baz" that can be used
+ for the type ``IBar``.
Let's say it finds no matching view type. It then returns a
``NotFound``. The request ends. Everyone is sad.
@@ -257,8 +257,8 @@ indicates it's an ``IBiz``).
Using the "view name" ("buz.txt") and the type, it asks the
:term:`application registry` this question:
- - Please find me a :term:`view` (*controller* in some religions)
- with the name "buz.txt" that can be used for type ``IBiz``.
+ - Please find me a :term:`view` with the name "buz.txt" that can be
+ used for type ``IBiz``.
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`.