Commit 593cf23a by Tom Christie

Merge pull request #1342 from yprez/fix_field_doc

Fix URL/Slug Field signatures in docs
parents c6182b78 052e236f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment