diff options
| author | Tom Christie | 2014-10-31 13:58:40 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-10-31 13:58:40 +0000 | 
| commit | 254701230d85612cf0210d4549c2d74f410a181d (patch) | |
| tree | cb4980179bb52548a878e939dd345a9b8e1cf9a9 /docs | |
| parent | 27622058872c00e357deb7d7e86619a793ef4b41 (diff) | |
| download | django-rest-framework-254701230d85612cf0210d4549c2d74f410a181d.tar.bz2 | |
Fix up validators docs
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api-guide/validators.md | 2 | ||||
| -rw-r--r-- | docs/index.md | 2 | ||||
| -rw-r--r-- | docs/template.html | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/docs/api-guide/validators.md b/docs/api-guide/validators.md index 52c9e082..6a0ef4ff 100644 --- a/docs/api-guide/validators.md +++ b/docs/api-guide/validators.md @@ -8,7 +8,7 @@  Most of the time you're dealing with validation in REST framework you'll simply be relying on the default field validation, or writing explicit validation methods on serializer or field classes. -Sometimes you'll want to place your validation logic into reusable components, so that it can easily be reused throughout your codebase. This can be achieved by using validator functions and validator classes. +However, sometimes you'll want to place your validation logic into reusable components, so that it can easily be reused throughout your codebase. This can be achieved by using validator functions and validator classes.  ## Validation in REST framework diff --git a/docs/index.md b/docs/index.md index cff7b835..161886a4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -173,7 +173,7 @@ The API guide is your complete reference manual to all the functionality provide  * [Serializers][serializers]  * [Serializer fields][fields]  * [Serializer relations][relations] -* [Validation][validation] +* [Validators][validators]  * [Authentication][authentication]  * [Permissions][permissions]  * [Throttling][throttling] diff --git a/docs/template.html b/docs/template.html index 0d2fb16e..f36cffc6 100644 --- a/docs/template.html +++ b/docs/template.html @@ -95,7 +95,7 @@ a.fusion-poweredby {                    <li><a href="{{ base_url }}/api-guide/serializers{{ suffix }}">Serializers</a></li>                    <li><a href="{{ base_url }}/api-guide/fields{{ suffix }}">Serializer fields</a></li>                    <li><a href="{{ base_url }}/api-guide/relations{{ suffix }}">Serializer relations</a></li> -                  <li><a href="{{ base_url }}/api-guide/validation{{ suffix }}">Validation</a></li> +                  <li><a href="{{ base_url }}/api-guide/validators{{ suffix }}">Validators</a></li>                    <li><a href="{{ base_url }}/api-guide/authentication{{ suffix }}">Authentication</a></li>                    <li><a href="{{ base_url }}/api-guide/permissions{{ suffix }}">Permissions</a></li>                    <li><a href="{{ base_url }}/api-guide/throttling{{ suffix }}">Throttling</a></li> | 
