From 477e4ad8282ef3ffa3a9f913e3bd7ac13eb121c1 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Sun, 8 Sep 2013 10:25:20 +1200 Subject: [PATCH] Fix the typo in the fix to the reference to wrapped when called in documentation example. --- docs/decorators.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/decorators.rst b/docs/decorators.rst index 5371d41..495ad36 100644 --- a/docs/decorators.rst +++ b/docs/decorators.rst @@ -126,7 +126,7 @@ be enforced using the keyword only argument syntax. @wrapt.decorator def wrapper(wrapped, instance, args, kwargs): - return wrappe(*args, **kwargs) + return wrapped(*args, **kwargs) return wrapper(wrapped)