summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/authentication.rst
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2024-06-10 12:09:42 -0400
committerGitHub <noreply@github.com>2024-06-10 12:09:42 -0400
commitef0f6861e5b439afe43983f6c7437c30a413a34d (patch)
treede670102b0123f2eea2ef399fd1e61cdfc5676b4 /docs/quick_tutorial/authentication.rst
parent72f61853beda8e21b669c3520e43fe3e5b224ba3 (diff)
parent1ebd9884e712463057de38fb4948a56c0c0982c5 (diff)
downloadpyramid-ef0f6861e5b439afe43983f6c7437c30a413a34d.tar.gz
pyramid-ef0f6861e5b439afe43983f6c7437c30a413a34d.tar.bz2
pyramid-ef0f6861e5b439afe43983f6c7437c30a413a34d.zip
Merge pull request #3760 from Pylons/tseaver-qt_cleanup
docs: quick tutorial cleanups
Diffstat (limited to 'docs/quick_tutorial/authentication.rst')
-rw-r--r--docs/quick_tutorial/authentication.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tutorial/authentication.rst b/docs/quick_tutorial/authentication.rst
index 3f6df17de..da76f3ec7 100644
--- a/docs/quick_tutorial/authentication.rst
+++ b/docs/quick_tutorial/authentication.rst
@@ -137,7 +137,7 @@ Subsequent requests return that cookie and identify the user.
In our template, we fetched the ``logged_in`` value from the view class. We use
this to calculate the logged-in user, if any. In the template we can then
choose to show a login link to anonymous visitors or a logout link to logged-in
-users.
+users, including their login name.
Extra credit