From 0f6165cc85a34860770d1b18f376df1195833576 Mon Sep 17 00:00:00 2001 From: Anuvrat Parashar Date: Mon, 24 Dec 2018 19:50:43 +0530 Subject: [PATCH] correct grammar, remove common noun after proper noun. `MultipartParser` is enough to denote that it is a parser. --- docs/api-guide/parsers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/parsers.md b/docs/api-guide/parsers.md index 09ce4556f..be48ae7e5 100644 --- a/docs/api-guide/parsers.md +++ b/docs/api-guide/parsers.md @@ -102,7 +102,7 @@ If it is called without a `filename` URL keyword argument, then the client must ##### Notes: -* The `FileUploadParser` is for usage with native clients that can upload the file as a raw data request. For web-based uploads, or for native clients with multipart upload support, you should use the `MultiPartParser` parser instead. +* The `FileUploadParser` is for usage with native clients that can upload the file as a raw data request. For web-based uploads, or for native clients with multipart upload support, you should use the `MultiPartParser` instead. * Since this parser's `media_type` matches any content type, `FileUploadParser` should generally be the only parser set on an API view. * `FileUploadParser` respects Django's standard `FILE_UPLOAD_HANDLERS` setting, and the `request.upload_handlers` attribute. See the [Django documentation][upload-handlers] for more details.