From c4a80c6ce9d4de73fbebd16303154e28a83146f6 Mon Sep 17 00:00:00 2001 From: fbz Date: Wed, 24 Dec 2025 11:06:26 +0800 Subject: [PATCH] docs: update docs --- docs/api-guide/fields.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index cb5730e21..98baab42f 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -417,7 +417,7 @@ Both the `allow_blank` and `allow_null` are valid options on `ChoiceField`, alth ## MultipleChoiceField -A field that can accept a set of zero, one or many values, chosen from a limited set of choices. Takes a single mandatory argument. `to_internal_value` returns a `set` containing the selected values. +A field that can accept a set of zero, one or many values, chosen from a limited list of choices. Takes a single mandatory argument. `to_internal_value` returns a `set` containing the selected values. **Signature:** `MultipleChoiceField(choices)`