From 14fb9d5692bcd04a5679c38b1a3cb54ae38ced21 Mon Sep 17 00:00:00 2001 From: Reggie V Date: Sat, 22 May 2021 18:15:49 +0800 Subject: [PATCH] Fixed minor typo (#127) --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index fda1e8b..d4ab4ba 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 queried 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 function can return ``None`` or ``False``. The user object can then be queried from the ``current_user()`` method of the authentication instance. Digest authentication example -----------------------------