From 025980be53b424a036d940baca773a0bdd74e712 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 23 Oct 2006 07:59:30 +0000 Subject: [PATCH] Fixed #2941 -- Fixed a typo pointed out by jeff@nokrev.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3916 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/forms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/forms.txt b/docs/forms.txt index ceb7a1addd..4a4ba37289 100644 --- a/docs/forms.txt +++ b/docs/forms.txt @@ -579,7 +579,7 @@ fails. If no message is passed in, a default message is used. ``ValidateIfOtherFieldEquals`` Takes three parameters: ``other_field``, ``other_value`` and ``validator_list``, in that order. If ``other_field`` has a value of - ``other_vaue``, then the validators in ``validator_list`` are all run + ``other_value``, then the validators in ``validator_list`` are all run against the current field. ``RequiredIfOtherFieldNotGiven``