From 1aa8bf9b43bbc214770389b9b8d084552040fa44 Mon Sep 17 00:00:00 2001 From: Andrew Plummer Date: Wed, 9 Dec 2015 10:43:20 +0000 Subject: [PATCH] Fixed typo in docs/ref/forms/validation.txt. --- docs/ref/forms/validation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index fc340d3b04..7f334f4361 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -75,7 +75,7 @@ overridden: * The form subclass's ``clean()`` method can perform validation that requires access to multiple form fields. This is where you might put in checks such as - "if field ``A``is supplied, field ``B`` must contain a valid email address". + "if field ``A`` is supplied, field ``B`` must contain a valid email address". This method can return a completely different dictionary if it wishes, which will be used as the ``cleaned_data``.