summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob van der Linde <robvdl@gmail.com>2024-03-02 14:47:36 +1300
committerRob van der Linde <robvdl@gmail.com>2024-03-02 14:47:36 +1300
commit294634e2739fbf44e0078cd259b45d236efde738 (patch)
treeb2079d7487375fc0ab74a6afe5e30111cc061ac8
parent5f7e286b0629b0a5f1225fe51172cba77eb8fda1 (diff)
downloadpyramid-294634e2739fbf44e0078cd259b45d236efde738.tar.gz
pyramid-294634e2739fbf44e0078cd259b45d236efde738.tar.bz2
pyramid-294634e2739fbf44e0078cd259b45d236efde738.zip
docs: fix typo in whatsnew MySecurityPolicy should be 'is'
-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 e97198b23..eeaf065d8 100644
--- a/docs/whatsnew-2.0.rst
+++ b/docs/whatsnew-2.0.rst
@@ -240,7 +240,7 @@ We can easily write our own :class:`pyramid.interfaces.ISecurityPolicy` implemen
}
def authenticated_userid(self, request):
- # defer to the identity logic to determine if the user id logged in
+ # defer to the identity logic to determine if the user is logged in
# and return None if they are not
identity = request.identity
if identity is not None: