From 058424c16a9625739493843061d72302c8eda57d Mon Sep 17 00:00:00 2001 From: Aaron Taajik <75927372+aaronn44@users.noreply.github.com> Date: Thu, 22 Sep 2022 13:20:23 +0330 Subject: [PATCH] docs: delete duplicate explanation (#8641) --- docs/api-guide/fields.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index 1e94362132..ab1847c0c9 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -306,10 +306,6 @@ And to validate numbers up to anything less than one billion with a resolution o serializers.DecimalField(max_digits=19, decimal_places=10) -This field also takes an optional argument, `coerce_to_string`. If set to `True` the representation will be output as a string. If set to `False` the representation will be left as a `Decimal` instance and the final representation will be determined by the renderer. - -If unset, this will default to the same value as the `COERCE_DECIMAL_TO_STRING` setting, which is `True` unless set otherwise. - --- # Date and time fields