1
0
mirror of https://github.com/django/django.git synced 2025-03-17 04:40:45 +00:00

Fixed typo in django/utils/decorators.py comment.

This commit is contained in:
Tom V 2014-11-24 15:29:30 +00:00 committed by Tim Graham
parent 0c623da664
commit d049b36f91

View File

@ -22,7 +22,7 @@ def method_decorator(decorator):
Converts a function decorator into a method decorator
"""
# 'func' is a function at the time it is passed to _dec, but will eventually
# be a method of the class it is defined it.
# be a method of the class it is defined on.
def _dec(func):
def _wrapper(self, *args, **kwargs):
@decorator