From f8bce94997739e4e61919cddff84fc3e3302d8f7 Mon Sep 17 00:00:00 2001 From: Yuichi Fujikawa Date: Thu, 25 May 2017 18:54:51 +0900 Subject: [PATCH] Fixed docstring typo in django/contrib/admin/actions.py. --- django/contrib/admin/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/admin/actions.py b/django/contrib/admin/actions.py index bc4e687171..1bad81376a 100644 --- a/django/contrib/admin/actions.py +++ b/django/contrib/admin/actions.py @@ -16,7 +16,7 @@ def delete_selected(modeladmin, request, queryset): Default action which deletes the selected objects. This action first displays a confirmation page which shows all the - deleteable objects, or, if the user has no permission one of the related + deletable objects, or, if the user has no permission one of the related childs (foreignkeys), a "permission denied" message. Next, it deletes all selected objects and redirects back to the change list.