summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2020-11-30 10:07:28 +0100
committerGitHub <noreply@github.com>2020-11-30 10:07:28 +0100
commit55fabc53373a8c7ef31d8c4cffd2a07be0a88c2e (patch)
treecbf82f582ced46c73838c6d1a1abd3c69d70d4d0 /docs
parent371022a20dba6ca12297e6f8bae4effe00bd5c50 (diff)
Fixed #32232 -- Fixed typo in docs/ref/contrib/admin/actions.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/admin/actions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/actions.txt b/docs/ref/contrib/admin/actions.txt
index e1988a039a..e75aa86afa 100644
--- a/docs/ref/contrib/admin/actions.txt
+++ b/docs/ref/contrib/admin/actions.txt
@@ -217,7 +217,7 @@ will need to return intermediate pages. For example, the built-in delete action
asks for confirmation before deleting the selected objects.
To provide an intermediary page, return an :class:`~django.http.HttpResponse`
-(or subclass) from your action. For example, you might write a export function
+(or subclass) from your action. For example, you might write an export function
that uses Django's :doc:`serialization functions </topics/serialization>` to
dump some selected objects as JSON::