diff options
| author | Yuri Prezument | 2014-01-09 18:12:30 +0200 | 
|---|---|---|
| committer | Yuri Prezument | 2014-01-09 18:12:30 +0200 | 
| commit | 052e236fde3453b33a4e651293da84e7d302cefb (patch) | |
| tree | f3e04828594f491750e0f7986b47888a8f14921f /docs/api-guide/fields.md | |
| parent | c6182b78e583c4c3eef0a172d1711b9268722cf1 (diff) | |
| download | django-rest-framework-052e236fde3453b33a4e651293da84e7d302cefb.tar.bz2 | |
Fix URL/Slug Field signatures in docs
Diffstat (limited to 'docs/api-guide/fields.md')
| -rw-r--r-- | docs/api-guide/fields.md | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index e05c0306..91866664 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -167,13 +167,13 @@ or `django.db.models.fields.TextField`.  Corresponds to `django.db.models.fields.URLField`.  Uses Django's `django.core.validators.URLValidator` for validation. -**Signature:** `CharField(max_length=200, min_length=None)` +**Signature:** `URLField(max_length=200, min_length=None)`  ## SlugField  Corresponds to `django.db.models.fields.SlugField`. -**Signature:** `CharField(max_length=50, min_length=None)` +**Signature:** `SlugField(max_length=50, min_length=None)`  ## ChoiceField | 
