diff options
| author | Craig de Stigter | 2014-10-03 08:41:18 +1300 | 
|---|---|---|
| committer | Craig de Stigter | 2014-10-03 08:41:18 +1300 | 
| commit | dfab9af294972720f59890967cd9ae1a6c0796b6 (patch) | |
| tree | 587fb81fc26d401870f860afb400fa027441b403 /docs/api-guide/fields.md | |
| parent | ffc6aa3abcb0f823b43b63db1666913565e6f934 (diff) | |
| download | django-rest-framework-dfab9af294972720f59890967cd9ae1a6c0796b6.tar.bz2 | |
Minor: fix spelling and grammar, mostly in 3.0 announcement
Diffstat (limited to 'docs/api-guide/fields.md')
| -rw-r--r-- | docs/api-guide/fields.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/fields.md b/docs/api-guide/fields.md index f0778318..292a51d8 100644 --- a/docs/api-guide/fields.md +++ b/docs/api-guide/fields.md @@ -286,7 +286,7 @@ For example, to validate numbers up to 999 with a resolution of 2 decimal places      serializers.DecimalField(max_digits=5, decimal_places=2) -And to validate numbers up to anything lesss than one billion with a resolution of 10 decimal places: +And to validate numbers up to anything less than one billion with a resolution of 10 decimal places:      serializers.DecimalField(max_digits=19, decimal_places=10) | 
