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
This commit is contained in:
Adrian Holovaty 2006-01-12 04:43:29 +00:00
parent 6ad3191418
commit 1929d8e8f3
1 changed files with 2 additions and 1 deletions

View File

@ -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)