From 9b4659e47b7e05a630f91b7e9471feef5111b503 Mon Sep 17 00:00:00 2001 From: Renato Oliveira Date: Tue, 22 Dec 2020 18:00:53 -0300 Subject: [PATCH] Fixes typo (#116) --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index c376217..fda1e8b 100755 --- a/docs/index.rst +++ b/docs/index.rst @@ -39,7 +39,7 @@ The following example application uses HTTP Basic authentication to protect rout if __name__ == '__main__': app.run() -The function decorated with the ``verify_password`` decorator receives the username and password sent by the client. If the credentials belong to a user, then the function should return the user object. If the credentials are invalid the functon can return ``None`` or ``False``. The user object can then be queries from the ``current_user()`` method of the authentication instance. +The function decorated with the ``verify_password`` decorator receives the username and password sent by the client. If the credentials belong to a user, then the function should return the user object. If the credentials are invalid the functon can return ``None`` or ``False``. The user object can then be queried from the ``current_user()`` method of the authentication instance. Digest authentication example -----------------------------