diff options
| author | Michael Merickel <github@m.merickel.org> | 2024-03-03 16:38:42 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-03 16:38:42 -0700 |
| commit | 8130e7bfbe213a00ca724531077be02588bbc73d (patch) | |
| tree | b2079d7487375fc0ab74a6afe5e30111cc061ac8 | |
| parent | 5f7e286b0629b0a5f1225fe51172cba77eb8fda1 (diff) | |
| parent | 294634e2739fbf44e0078cd259b45d236efde738 (diff) | |
| download | pyramid-8130e7bfbe213a00ca724531077be02588bbc73d.tar.gz pyramid-8130e7bfbe213a00ca724531077be02588bbc73d.tar.bz2 pyramid-8130e7bfbe213a00ca724531077be02588bbc73d.zip | |
Merge pull request #3754 from wainuiomata/typo-whatsnew
docs: fix typo in whatsnew MySecurityPolicy should be 'is'
| -rw-r--r-- | docs/whatsnew-2.0.rst | 2 |
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: |
