summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2015-09-29 20:25:31 -0400
committerChris McDonough <chrism@plope.com>2015-09-29 20:25:31 -0400
commit20d9350e61bc86e019c42b866c0b85cd274438bb (patch)
treefefd399f5b089f5edb7bafc7d07d4cf3598a0fc4 /docs
parentb9b68fed103b18a19a0c0935365abbdd4a720dbc (diff)
parent7d5d899f5043b381348bd349792fda6da957ab50 (diff)
downloadpyramid-20d9350e61bc86e019c42b866c0b85cd274438bb.tar.gz
pyramid-20d9350e61bc86e019c42b866c0b85cd274438bb.tar.bz2
pyramid-20d9350e61bc86e019c42b866c0b85cd274438bb.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/viewconfig.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/viewconfig.rst b/docs/narr/viewconfig.rst
index 46b2c4f76..484350b31 100644
--- a/docs/narr/viewconfig.rst
+++ b/docs/narr/viewconfig.rst
@@ -108,7 +108,7 @@ Non-Predicate Arguments
function) to obtain a response. The ``attr`` value allows you to vary the
method attribute used to obtain the response. For example, if your view
was a class, and the class has a method named ``index`` and you wanted to
- use this method instead of the class' ``__call__`` method to return the
+ use this method instead of the class's ``__call__`` method to return the
response, you'd say ``attr="index"`` in the view configuration for the
view. This is most useful when the view definition is a class.