From 16f533b2a4b5278844fdd077e04c4bebba33b968 Mon Sep 17 00:00:00 2001 From: minusf Date: Tue, 3 Feb 2015 14:03:05 +0100 Subject: [PATCH] [1.6.x] Fixed typos in docs/ref/forms/validation.txt. Backport of 66f5aa9fa5d53ddd7fbdb7ddac39c429f0c1b4fd from master --- docs/ref/forms/validation.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index 7111073b5f..868f790782 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -34,7 +34,7 @@ overridden: ``ValidationError``. * The ``validate()`` method on a Field handles field-specific validation - that is not suitable for a validator, It takes a value that has been + that is not suitable for a validator. It takes a value that has been coerced to correct datatype and raises ``ValidationError`` on any error. This method does not return anything and shouldn't alter the value. You should override it to handle validation logic that you can't or don't @@ -301,7 +301,7 @@ available and for an example of how to write a validator. Form field default cleaning ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Let's firstly create a custom form field that validates its input is a string +Let's first create a custom form field that validates its input is a string containing comma-separated email addresses. The full class looks like this:: from django import forms