summaryrefslogtreecommitdiff
path: root/docs/narr/viewconfig.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-09-12 05:19:46 -0700
committerSteve Piercy <web@stevepiercy.com>2015-09-12 05:19:46 -0700
commit509ca0fd906304b7fc672fcc7cb7a59527f1ba86 (patch)
tree0daa78e9dbb6c39ee7bfbf69930f12f3fdd3babd /docs/narr/viewconfig.rst
parentf17b973ea66b7ffb2afb03da2c559e55c22fe3ee (diff)
downloadpyramid-509ca0fd906304b7fc672fcc7cb7a59527f1ba86.tar.gz
pyramid-509ca0fd906304b7fc672fcc7cb7a59527f1ba86.tar.bz2
pyramid-509ca0fd906304b7fc672fcc7cb7a59527f1ba86.zip
Fix possessive form, from PR by @uralbash
Diffstat (limited to 'docs/narr/viewconfig.rst')
-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.