Fix the typo in the fix to the reference to wrapped when called in documentation example.

This commit is contained in:
Graham Dumpleton
2013-09-08 10:25:20 +12:00
parent 9bad3d397e
commit 477e4ad828

View File

@@ -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)