Fix minor typo

This commit is contained in:
Marlon 2016-08-05 11:57:43 -07:00 committed by GitHub
parent bb613c5ad1
commit 672e5a0f96

View File

@ -488,7 +488,7 @@ This field is used by default with `ModelSerializer` when including field names
**Signature**: `ReadOnlyField()`
For example, is `has_expired` was a property on the `Account` model, then the following serializer would automatically generate it as a `ReadOnlyField`:
For example, if `has_expired` was a property on the `Account` model, then the following serializer would automatically generate it as a `ReadOnlyField`:
class AccountSerializer(serializers.ModelSerializer):
class Meta: