diff options
| author | Tom Christie | 2015-01-30 11:00:29 +0000 | 
|---|---|---|
| committer | Tom Christie | 2015-01-30 11:00:29 +0000 | 
| commit | 7cf9dea7f905ea6869148a68b4fa96cad0a347e8 (patch) | |
| tree | 97a6e69ef236815d90f4a690dd081e050a917438 /docs | |
| parent | 2a43d9db87f92097bbc8720c3fc8f8a1dfba5a94 (diff) | |
| download | django-rest-framework-7cf9dea7f905ea6869148a68b4fa96cad0a347e8.tar.bz2 | |
Docs typo. Closes #2491.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api-guide/parsers.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/parsers.md b/docs/api-guide/parsers.md index 73e3a705..3d44fe56 100644 --- a/docs/api-guide/parsers.md +++ b/docs/api-guide/parsers.md @@ -128,7 +128,7 @@ If the view used with `FileUploadParser` is called with a `filename` URL keyword          def put(self, request, filename, format=None):              file_obj = request.data['file']              # ... -            # do some staff with uploaded file +            # do some stuff with uploaded file              # ...              return Response(status=204) | 
