From eaf55548655ac085acdacfad45be9fa35c47756c Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 2 Apr 2011 21:45:56 +0000 Subject: [PATCH] Fixed grammar error in utils/functional.py from [15940] git-svn-id: http://code.djangoproject.com/svn/django/trunk@16005 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/functional.py b/django/utils/functional.py index d50d4ffa05..ee0f09a9ee 100644 --- a/django/utils/functional.py +++ b/django/utils/functional.py @@ -3,7 +3,7 @@ from functools import wraps, update_wrapper # You can't trivially replace this `functools.partial` because this binds to # classes and returns bound instances, whereas functools.partial (on CPython) -# is a type and it's instances don't bind. +# is a type and its instances don't bind. def curry(_curried_func, *args, **kwargs): def _curried(*moreargs, **morekwargs): return _curried_func(*(args+moreargs), **dict(kwargs, **morekwargs))