From 56838bc2f7b54c6586056c1a6c457c5b3de893ec Mon Sep 17 00:00:00 2001 From: Andrii Danyleiko Date: Mon, 31 Jul 2017 17:56:13 +0200 Subject: [PATCH] Fix minor misprint in docstring --- flask_jwt_extended/view_decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_jwt_extended/view_decorators.py b/flask_jwt_extended/view_decorators.py index 61ff0a4e..53be7c4a 100644 --- a/flask_jwt_extended/view_decorators.py +++ b/flask_jwt_extended/view_decorators.py @@ -22,7 +22,7 @@ def jwt_required(fn): """ - If you decorate a vew with this, it will ensure that the requester has a + If you decorate a view with this, it will ensure that the requester has a valid JWT before calling the actual view. This does not check the freshness of the token.