summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Metts <xian@mintchaos.com>2013-06-19 17:45:28 -0600
committerChristian Metts <xian@mintchaos.com>2013-06-19 17:45:28 -0600
commitc4a0c91459185a1c78bb75bdf32e42943da09a7d (patch)
tree65301ae0627dffc824acb703305270067bc6bcef
parent7462a78c1bdef2f37ea9aae5ad05170dbd14b34a (diff)
Itty bitty typo fix.
"deletes" was missing it's last e.
-rw-r--r--django/contrib/admin/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/actions.py b/django/contrib/admin/actions.py
index a56c6a6168..a4c5828f37 100644
--- a/django/contrib/admin/actions.py
+++ b/django/contrib/admin/actions.py
@@ -19,7 +19,7 @@ def delete_selected(modeladmin, request, queryset):
deleteable objects, or, if the user has no permission one of the related
childs (foreignkeys), a "permission denied" message.
- Next, it delets all selected objects and redirects back to the change list.
+ Next, it deletes all selected objects and redirects back to the change list.
"""
opts = modeladmin.model._meta
app_label = opts.app_label