diff options
| author | Tom Christie | 2014-10-03 13:12:43 +0100 |
|---|---|---|
| committer | Tom Christie | 2014-10-03 13:12:43 +0100 |
| commit | 01c0857f8b59137543565bf9a589fe2193725346 (patch) | |
| tree | 8faeba430e535466ced4404e4157e336f5b09d60 /docs/api-guide | |
| parent | 765b0b33bf1fa9b7c6b45d3877d10a05d4e9f6ea (diff) | |
| parent | dd47d8aa459e5ab12ce7ddf2a6f52fdbd82cec18 (diff) | |
| download | django-rest-framework-01c0857f8b59137543565bf9a589fe2193725346.tar.bz2 | |
Merge branch 'version-3.0' of https://github.com/tomchristie/django-rest-framework into version-3.0
Diffstat (limited to 'docs/api-guide')
| -rw-r--r-- | docs/api-guide/fields.md | 2 | ||||
| -rw-r--r-- | docs/api-guide/renderers.md | 2 |
2 files changed, 2 insertions, 2 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) diff --git a/docs/api-guide/renderers.md b/docs/api-guide/renderers.md index 2e1c892f..db7436c2 100644 --- a/docs/api-guide/renderers.md +++ b/docs/api-guide/renderers.md @@ -74,7 +74,7 @@ If your API includes views that can serve both regular webpages and API response Renders the request data into `JSON`, using utf-8 encoding. -Note that the default style is to include unicode characters, and render the response using a compact style with no uneccessary whitespace: +Note that the default style is to include unicode characters, and render the response using a compact style with no unnecessary whitespace: {"unicode black star":"★","value":999} |
