From b6d345a0fe2aab3a1a2fb58b3be1ad274d5a21fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mice=20P=C3=A1pai?= <16381622+qwhex@users.noreply.github.com> Date: Thu, 15 Nov 2018 15:13:25 +0100 Subject: [PATCH] update docs/api-guide/serializers.md: consistency --- docs/api-guide/serializers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index 19501718e..3ef930c64 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -208,7 +208,7 @@ To do any other validation that requires access to multiple fields, add a method def validate(self, data): """ - Check that the start is before the stop. + Check that start is before finish. """ if data['start'] > data['finish']: raise serializers.ValidationError("finish must occur after start")