From d049b36f91538595b9c7cdb7a1506c130803d226 Mon Sep 17 00:00:00 2001 From: Tom V Date: Mon, 24 Nov 2014 15:29:30 +0000 Subject: [PATCH] Fixed typo in django/utils/decorators.py comment. --- django/utils/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/decorators.py b/django/utils/decorators.py index 3331fca076..ba951a9ebc 100644 --- a/django/utils/decorators.py +++ b/django/utils/decorators.py @@ -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