From 56ec7b152e0d88933973ae4da84b563c446042a6 Mon Sep 17 00:00:00 2001 From: Michael Blatherwick Date: Fri, 27 Mar 2015 18:00:19 +0000 Subject: [PATCH] Fixed docstring typo --- rest_framework/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/fields.py b/rest_framework/fields.py index a80862e8c..bea773001 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -339,7 +339,7 @@ class Field(object): * Raise `ValidationError`, indicating invalid data. * Raise `SkipField`, indicating that the field should be ignored. * Return (True, data), indicating an empty value that should be - returned without any furhter validation being applied. + returned without any further validation being applied. * Return (False, data), indicating a non-empty value, that should have validation applied as normal. """