From 5fc35eb7eb1ce8ca91fa6364978b5e423b80a332 Mon Sep 17 00:00:00 2001 From: Ryan P Kilby Date: Fri, 22 Dec 2017 11:52:51 -0500 Subject: [PATCH] Add missing word in 'Field.allow_null' 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 6bf0ed15e..a2f10ed19 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -45,7 +45,7 @@ Defaults to `True`. Normally an error will be raised if `None` is passed to a serializer field. Set this keyword argument to `True` if `None` should be considered a valid value. -Note that setting this argument to `True` will imply a default value of `null` for serialization output, but does imply a default for input deserialization. +Note that setting this argument to `True` will imply a default value of `null` for serialization output, but does not imply a default for input deserialization. Defaults to `False`