aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/validators.py
diff options
context:
space:
mode:
authorCraig de Stigter2014-10-03 08:41:18 +1300
committerCraig de Stigter2014-10-03 08:41:18 +1300
commitdfab9af294972720f59890967cd9ae1a6c0796b6 (patch)
tree587fb81fc26d401870f860afb400fa027441b403 /rest_framework/validators.py
parentffc6aa3abcb0f823b43b63db1666913565e6f934 (diff)
downloaddjango-rest-framework-dfab9af294972720f59890967cd9ae1a6c0796b6.tar.bz2
Minor: fix spelling and grammar, mostly in 3.0 announcement
Diffstat (limited to 'rest_framework/validators.py')
-rw-r--r--rest_framework/validators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/validators.py b/rest_framework/validators.py
index 20de4b42..5bb69ad8 100644
--- a/rest_framework/validators.py
+++ b/rest_framework/validators.py
@@ -2,7 +2,7 @@
We perform uniqueness checks explicitly on the serializer class, rather
the using Django's `.full_clean()`.
-This gives us better seperation of concerns, allows us to use single-step
+This gives us better separation of concerns, allows us to use single-step
object creation, and makes it possible to switch between using the implicit
`ModelSerializer` class and an equivelent explicit `Serializer` class.
"""