Skip to content

Commit d0369b2

Browse files
qwhextomchristie
authored andcommitted
update docs/api-guide/serializers.md: consistency (encode#6320)
1 parent 2c0b2bd commit d0369b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api-guide/serializers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ To do any other validation that requires access to multiple fields, add a method
208208

209209
def validate(self, data):
210210
"""
211-
Check that the start is before the stop.
211+
Check that start is before finish.
212212
"""
213213
if data['start'] > data['finish']:
214214
raise serializers.ValidationError("finish must occur after start")

0 commit comments

Comments
 (0)