From a9282a53ee6115140e4d99ca70476bc93a36d85f Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 14 Mar 2023 13:25:58 +0000 Subject: [PATCH] Update docs/api-guide/fields.md --- 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 f0a9be3c2..4ac3e3c31 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -327,7 +327,7 @@ Corresponds to `django.db.models.fields.DateTimeField`. Format strings may either be [Python strftime formats][strftime] which explicitly specify the format, or the special string `'iso-8601'`, which indicates that [ISO 8601][iso8601] style datetimes should be used. (eg `'2013-01-29T12:34:56.000000Z'`) -When a value of `None` is used for the format `datetime` objects will be returned by `to_representation` and the final output representation wil be determined by the renderer class. +When a value of `None` is used for the format `datetime` objects will be returned by `to_representation` and the final output representation will be determined by the renderer class. #### `auto_now` and `auto_now_add` model fields.