diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-04-02 21:45:56 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-04-02 21:45:56 +0000 |
| commit | eaf55548655ac085acdacfad45be9fa35c47756c (patch) | |
| tree | 964899605f5ffeb8327b3699a8274796f638acd4 | |
| parent | cca232c2349b9fc979604a977808146c9d81181e (diff) | |
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
| -rw-r--r-- | django/utils/functional.py | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |
