diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index f5d93835b..0b4991589 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -279,7 +279,7 @@ Corresponds to `django.db.models.fields.BigIntegerField`. * `max_value` Validate that the number provided is no greater than this value. * `min_value` Validate that the number provided is no less than this value. -* `coerce_to_string` Set to `True` if string values should be returned for the representation, or `False` if `BigInteger` objects should be returned. Defaults to the same value as the `COERCE_BIGINT_TO_STRING` settings key, which will be `True` unless overridden. If `BigInteger` objects are returned by the serializer, then the final output format will be determined by the renderer. +* `coerce_to_string` Set to `True` if string values should be returned for the representation, or `False` if `BigInteger` objects should be returned. Defaults to the same value as the `COERCE_BIGINT_TO_STRING` settings key, which will be `False` unless overridden. If `BigInteger` objects are returned by the serializer, then the final output format will be determined by the renderer. ## FloatField