summaryrefslogtreecommitdiff
path: root/docs/forms.txt
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2006-12-04 21:01:18 +0000
committerJason Pellerin <jpellerin@gmail.com>2006-12-04 21:01:18 +0000
commit0162eac9e2cd317476dd4086c36caf138c96f6bc (patch)
treeb0291398992643bdfbe534e9ff0b5b52e413d0fb /docs/forms.txt
parent478ebadec7fa9045b2f1ea2027919339572007f2 (diff)
[multi-db] Merged trunk to [4100]. Some tests still failing.
git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@4158 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/forms.txt')
-rw-r--r--docs/forms.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/forms.txt b/docs/forms.txt
index 1c683c44f7..ff192a4717 100644
--- a/docs/forms.txt
+++ b/docs/forms.txt
@@ -611,13 +611,13 @@ fails. If no message is passed in, a default message is used.
string comparison here, you will need to write your own validator.
``NumberIsInRange``
- Takes two boundary number, ``lower`` and ``upper`` and checks that the
+ Takes two boundary numbers, ``lower`` and ``upper``, and checks that the
field is greater than ``lower`` (if given) and less than ``upper`` (if
given).
- Both checks are inclusive; that is, ``NumberIsInRange(10, 20)`` will allow
- values of both 10 and 20. This validator only checks numeric fields
- (i.e. floats and integer fields).
+ Both checks are inclusive. That is, ``NumberIsInRange(10, 20)`` will allow
+ values of both 10 and 20. This validator only checks numeric values
+ (e.g., float and integer values).
``IsAPowerOf``
Takes an integer argument and when called as a validator, checks that the