From 8ae105e97fcc368b2f0596fb899118f52c6f2c41 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 18 Sep 2022 06:58:13 +1000 Subject: [PATCH] docs: fix simple typo, requred -> required There is a small typo in apex/decorators.py. Should read `required` rather than `requred`. Signed-off-by: Tim Gates --- apex/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apex/decorators.py b/apex/decorators.py index 42678c3..96ad3b3 100644 --- a/apex/decorators.py +++ b/apex/decorators.py @@ -6,7 +6,7 @@ from apex.lib.flash import flash def login_required(wrapped): - """ login_requred - Decorator to be used if you don't want to use + """ login_required - Decorator to be used if you don't want to use permission='user' """ def wrapper(request):