From aa8e7e877cf89ac0e11608cd13c5f016ac01e65b Mon Sep 17 00:00:00 2001 From: Marnanel Thurman Date: Fri, 1 Nov 2019 17:50:57 +0000 Subject: [PATCH] Fixed docstring typo --- rest_framework/request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/request.py b/rest_framework/request.py index ec4b749c2..85c8489f6 100644 --- a/rest_framework/request.py +++ b/rest_framework/request.py @@ -266,7 +266,7 @@ class Request: def _load_data_and_files(self): """ - Parses the request content into `self.data`. + Parses the request content into `self._data`. """ if not _hasattr(self, '_data'): self._data, self._files = self._parse()