summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-27 22:27:59 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-27 22:27:59 -0700
commite07a7407ecddfda2fd225beefb847b91da639152 (patch)
treed189e4e6a885b21be4136b32dcdd6baae9cf5fd4 /docs/narr
parent52099c84604df13d65b4f5ec194b8e4a256baf07 (diff)
downloadpyramid-e07a7407ecddfda2fd225beefb847b91da639152.tar.gz
pyramid-e07a7407ecddfda2fd225beefb847b91da639152.tar.bz2
pyramid-e07a7407ecddfda2fd225beefb847b91da639152.zip
add comma
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/views.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/narr/views.rst b/docs/narr/views.rst
index 629b5f507..8f242f451 100644
--- a/docs/narr/views.rst
+++ b/docs/narr/views.rst
@@ -55,7 +55,7 @@ configuration` for the view.
View callables can be functions, instances, or classes. View
callables can optionally be defined with an alternate calling
-convention.
+convention. XXX Explain this more XXX
.. index::
single: view calling convention
@@ -67,7 +67,7 @@ Defining a View Callable as a Function
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The easiest way to define a view callable is to create a function that
-accepts a single argument named ``request`` and which returns a
+accepts a single argument named ``request``, and which returns a
:term:`Response` object. For example, this is a "hello world" view
callable implemented as a function: