aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/fields.md
diff options
context:
space:
mode:
authorTom Christie2014-10-03 09:24:26 +0100
committerTom Christie2014-10-03 09:24:26 +0100
commitdd47d8aa459e5ab12ce7ddf2a6f52fdbd82cec18 (patch)
treec5feac5b9d6eb3d4748b33ba74996f4fede5766b /docs/api-guide/fields.md
parentfec7c4b45812d22423e73ec3ab801857a55d7340 (diff)
parent857a8486b1534f89bd482de86d39ff717b6618eb (diff)
downloaddjango-rest-framework-dd47d8aa459e5ab12ce7ddf2a6f52fdbd82cec18.tar.bz2
Merge pull request #1921 from koordinates/fix-typos
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.md2
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)