summaryrefslogtreecommitdiff
path: root/docs/whatsnew-2.0.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-10-01 18:38:29 -0500
committerMichael Merickel <michael@merickel.org>2019-10-01 18:38:29 -0500
commit00ac1f913ee7068babcf1fd482eb91dbd04d5ec2 (patch)
tree0487e28c11df6d0b19e9b1ff26f9ba61f70bcc45 /docs/whatsnew-2.0.rst
parent849463d3c2f5ad2c89b3d10a2abce63e4892082d (diff)
downloadpyramid-00ac1f913ee7068babcf1fd482eb91dbd04d5ec2.tar.gz
pyramid-00ac1f913ee7068babcf1fd482eb91dbd04d5ec2.tar.bz2
pyramid-00ac1f913ee7068babcf1fd482eb91dbd04d5ec2.zip
fix a word
Diffstat (limited to 'docs/whatsnew-2.0.rst')
-rw-r--r--docs/whatsnew-2.0.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/whatsnew-2.0.rst b/docs/whatsnew-2.0.rst
index 446fcda21..bf1554a27 100644
--- a/docs/whatsnew-2.0.rst
+++ b/docs/whatsnew-2.0.rst
@@ -44,7 +44,7 @@ The new security policy adds the concept of an :term:`identity`, which is an
object representing the user associated with the current request. The identity
can be accessed via :attr:`pyramid.request.Request.authenticated_identity`.
The object can be of any shape, such as a simple ID string or an ORM object,
-but should implement a ``__str__`` method that outputs a string identifying the
+but should implement a ``__str__`` method that returns a string identifying the
current user, e.g. the ID of the user object in a database. The string
representation is return as
:attr:`pyramid.request.Request.authenticated_userid`.