Commit eaec60ae by Nik Nyby Committed by Tom Christie

docs: grammar fix - it's -> its (#4698)

parent 36552eb5
...@@ -153,7 +153,7 @@ The field will not be writable to the user, but the default value will still be ...@@ -153,7 +153,7 @@ The field will not be writable to the user, but the default value will still be
#### Using with a hidden date field. #### Using with a hidden date field.
If you want the date field to be entirely hidden from the user, then use `HiddenField`. This field type does not accept user input, but instead always returns it's default value to the `validated_data` in the serializer. If you want the date field to be entirely hidden from the user, then use `HiddenField`. This field type does not accept user input, but instead always returns its default value to the `validated_data` in the serializer.
published = serializers.HiddenField(default=timezone.now) published = serializers.HiddenField(default=timezone.now)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment