소스 검색

Fixed typo in docs/ref/forms/validation.txt.

Andrew Plummer 9 년 전
부모
커밋
1aa8bf9b43
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/ref/forms/validation.txt

+ 1 - 1
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``.