summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-07-18 23:52:18 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-07-18 23:52:18 +0000
commitdc375fb0f3b7fbae740e8cfcd791b8bccb8a4e66 (patch)
tree37ab9ee094f84803387648d8428bebc4bf43c567 /django
parent5735e161a211a6f3e335e68e97f4edc1d42612c1 (diff)
Refs #3639 -- Minor docstring correction, it's a function not a method.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7966 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/views/generic/create_update.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/generic/create_update.py b/django/views/generic/create_update.py
index 17ba2de766..a51661c4a7 100644
--- a/django/views/generic/create_update.py
+++ b/django/views/generic/create_update.py
@@ -68,7 +68,7 @@ def redirect(post_save_redirect, obj):
by ``get_absolute_url()``. If ``obj`` has no ``get_absolute_url`` method,
then raise ImproperlyConfigured.
- This method is meant to handle the post_save_redirect parameter to the
+ This function is meant to handle the post_save_redirect parameter to the
``create_object`` and ``update_object`` views.
"""
if post_save_redirect: