From 79abdc9cde9ebbaec5a6adf282ecdcd44dd896de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 7 Dec 2022 18:48:39 +0800 Subject: [PATCH] Fixed the documentation of the login_required decorator in the DigestAuth class. --- src/flask_digest_auth/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flask_digest_auth/auth.py b/src/flask_digest_auth/auth.py index 480c1cc..8d30512 100644 --- a/src/flask_digest_auth/auth.py +++ b/src/flask_digest_auth/auth.py @@ -70,7 +70,7 @@ class DigestAuth: """The callback to run when the user logs in.""" def login_required(self, view) -> t.Callable: - """The view decorator for HTTP digest authentication. + """The view decorator for the HTTP digest authentication. :Example: