summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTom V <tom@viner.tv>2014-11-24 15:29:30 +0000
committerTim Graham <timograham@gmail.com>2014-11-24 10:46:28 -0500
commit014f699c8bc77da972990b767ab7a5582a8844e9 (patch)
tree75a964866d4888c7cbcc7261842160267c34bd53 /django
parent9d0e61f04dc7fdb06572c46a45bb635ef889ce4b (diff)
[1.7.x] Fixed typo in django/utils/decorators.py comment.
Backport of d049b36f91538595b9c7cdb7a1506c130803d226 from master
Diffstat (limited to 'django')
-rw-r--r--django/utils/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/decorators.py b/django/utils/decorators.py
index fbcf4edf13..34998d0356 100644
--- a/django/utils/decorators.py
+++ b/django/utils/decorators.py
@@ -17,7 +17,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