summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/firstapp.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/narr/firstapp.rst b/docs/narr/firstapp.rst
index ccc2b8b18..2c8e346b1 100644
--- a/docs/narr/firstapp.rst
+++ b/docs/narr/firstapp.rst
@@ -71,11 +71,11 @@ named ``hello_world``.
:linenos:
:pyobject: hello_world
-This function doesn't do anything very difficult. The functions accepts a
+This function doesn't do anything very difficult. The function accepts a
single argument (``request``). The ``hello_world`` function returns an
-instance of the :class:`pyramid.response.Response`. The single argument to
-the class' constructor is value computed from arguments matched from the url
-route. This value becomes the body of the response.
+instance of the :class:`pyramid.response.Response` class. The single
+argument to the class' constructor value is computed from arguments
+matched from the url route. This value becomes the body of the response.
This function is known as a :term:`view callable`. A view callable
accepts a single argument, ``request``. It is expected to return a