From 408da7b4578ee6616d7a72fda9591364f254e9a6 Mon Sep 17 00:00:00 2001 From: Andrew Badr Date: Thu, 11 Apr 2013 16:27:14 +0300 Subject: [PATCH] remove confusing phrase from DecimalField docs The phrase "if it exists" was used in reference to the `decimal_places` argument to `DecimalField`, when in fact that field is required. --- docs/ref/models/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index f22436e5fe..7ef251c907 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -476,7 +476,7 @@ A fixed-precision decimal number, represented in Python by a .. attribute:: DecimalField.max_digits The maximum number of digits allowed in the number. Note that this number - must be greater than or equal to ``decimal_places``, if it exists. + must be greater than or equal to ``decimal_places``. .. attribute:: DecimalField.decimal_places