summaryrefslogtreecommitdiff
path: root/docs/model-api.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-01-12 04:43:29 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-01-12 04:43:29 +0000
commit1929d8e8f3da1fb5279574be688ed7182b72c4d9 (patch)
treeaf7a89239a9e984e0ed7c656a6384034950d695a /docs/model-api.txt
parent6ad31914185928ba5f108311acfdb889a285f393 (diff)
Fixed billion vs. million bug in docs/model-api.txt. Thanks, Armin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1926 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/model-api.txt')
-rw-r--r--docs/model-api.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index a6e5adf917..d7ac7d6fe5 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -361,7 +361,8 @@ Here are all available field types:
meta.FloatField(..., max_digits=5, decimal_places=2)
- And to store numbers up to one million with a resolution of 10 decimal places::
+ And to store numbers up to approximately one billion with a resolution of 10
+ decimal places::
meta.FloatField(..., max_digits=19, decimal_places=10)