summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2020-01-07 10:07:43 -0600
committerGitHub <noreply@github.com>2020-01-07 10:07:43 -0600
commit425c85fadfe40d016eb3320d424ec3741a47d9c4 (patch)
treeb19533d12e154297620d72846057eab65745599d /docs/tutorials/wiki2
parent3c06a69e753e3e0cda8d1c9a6a1db9c55f7843ea (diff)
downloadpyramid-425c85fadfe40d016eb3320d424ec3741a47d9c4.tar.gz
pyramid-425c85fadfe40d016eb3320d424ec3741a47d9c4.tar.bz2
pyramid-425c85fadfe40d016eb3320d424ec3741a47d9c4.zip
fix punctuation in docs/tutorials/wiki2/authentication.rst
Co-Authored-By: Steve Piercy <web@stevepiercy.com>
Diffstat (limited to 'docs/tutorials/wiki2')
-rw-r--r--docs/tutorials/wiki2/authentication.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki2/authentication.rst b/docs/tutorials/wiki2/authentication.rst
index 580e4ba75..a4937d93e 100644
--- a/docs/tutorials/wiki2/authentication.rst
+++ b/docs/tutorials/wiki2/authentication.rst
@@ -18,7 +18,7 @@ We will implement authentication with the following steps:
* Add "Login" and "Logout" links to every page based on the user's
authenticated state (``layout.jinja2``).
* Make the existing views verify user state (``views/default.py``).
-* Redirect to ``/login`` when a user is not logged in and is denied access to any of the views that require permission (``views/auth.py``)..
+* Redirect to ``/login`` when a user is not logged in and is denied access to any of the views that require permission (``views/auth.py``).
* Show a custom "403 Forbidden" page if a logged in user is denied access to any views that require permission (``views/auth.py``).