summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-01-27 22:17:36 -0800
committerGitHub <noreply@github.com>2017-01-27 22:17:36 -0800
commit955bec6d5423cd674e84658a4941ef78a6ab2272 (patch)
treed07589ec1894a177fd3038911770dced339734c2 /docs
parent65a9160588d70cd773749ae827e56e9eee96223c (diff)
parent8a5966918e377b1dfa35331da66d9cff2c33d7e4 (diff)
downloadpyramid-955bec6d5423cd674e84658a4941ef78a6ab2272.tar.gz
pyramid-955bec6d5423cd674e84658a4941ef78a6ab2272.tar.bz2
pyramid-955bec6d5423cd674e84658a4941ef78a6ab2272.zip
Merge pull request #2929 from stevepiercy/master
Minor change
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/views.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/views.rst b/docs/narr/views.rst
index ab139ea19..d4826be4d 100644
--- a/docs/narr/views.rst
+++ b/docs/narr/views.rst
@@ -52,7 +52,7 @@ of exceptions from within the body of a view callable.
Defining a View Callable as a Function
--------------------------------------
-One of the easiest way to define a view callable is to create a function that
+One of the easiest ways to define a view callable is to create a function that
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: