From 1929d8e8f3da1fb5279574be688ed7182b72c4d9 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 12 Jan 2006 04:43:29 +0000 Subject: [PATCH] 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 --- docs/model-api.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)