diff options
| author | Kevin Brown | 2015-03-27 18:09:36 -0400 |
|---|---|---|
| committer | Kevin Brown | 2015-03-27 18:09:36 -0400 |
| commit | ba951f333988972392c5925070a2b980535cf930 (patch) | |
| tree | f58d301b46d310aefcb6b370a776799aae562633 | |
| parent | 5f3d09a0521b22c819d50833ba3134211fd29d9e (diff) | |
| parent | 56ec7b152e0d88933973ae4da84b563c446042a6 (diff) | |
| download | django-rest-framework-ba951f333988972392c5925070a2b980535cf930.tar.bz2 | |
Merge pull request #2775 from exonian/patch-1
Fixed docstring typo
| -rw-r--r-- | rest_framework/fields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/fields.py b/rest_framework/fields.py index a80862e8..bea77300 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. """ |
