summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2020-01-04 13:17:39 -0600
committerMichael Merickel <michael@merickel.org>2020-01-04 13:17:39 -0600
commitef5b4019633b8ca383df75bdf517932ee23f304e (patch)
treea581391c92f095199c71edb76ae52c5e168083db /docs
parent828e069de5d0c98e6d54cfdbf20b1a8acd1f6b39 (diff)
downloadpyramid-ef5b4019633b8ca383df75bdf517932ee23f304e.tar.gz
pyramid-ef5b4019633b8ca383df75bdf517932ee23f304e.tar.bz2
pyramid-ef5b4019633b8ca383df75bdf517932ee23f304e.zip
clarify that new system is coupled
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tutorial/authentication.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/authentication.rst b/docs/quick_tutorial/authentication.rst
index 12eb738e2..3f6df17de 100644
--- a/docs/quick_tutorial/authentication.rst
+++ b/docs/quick_tutorial/authentication.rst
@@ -106,8 +106,8 @@ Analysis
Unlike many web frameworks, Pyramid includes a built-in but optional security
model for authentication and authorization. This security system is intended to
be flexible and support many needs. In this security model, authentication (who
-are you) and authorization (what are you allowed to do) are not just pluggable,
-but decoupled. To learn one step at a time, we provide a system that identifies
+are you) and authorization (what are you allowed to do) are pluggable.
+To learn one step at a time, we provide a system that identifies
users and lets them log out.
In this example we chose to use the bundled :class:`pyramid.authentication.AuthTktCookieHelper` helper to store the user's logged-in state in a cookie.