diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-26 10:18:45 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-04-26 10:18:45 -0700 |
commit | 2bcb8bfc8de5cd57ebb64b326cd7609aa0d8c1c7 (patch) | |
tree | 6c0dc4b5f0d4dbcae6c181efc2b346799ac5caf3 /django/http/request.py | |
parent | 8b5b199e20ad2d8d3e91873ce0cd5d3035e05ece (diff) | |
download | django-2bcb8bfc8de5cd57ebb64b326cd7609aa0d8c1c7.tar.gz |
Fix many many typos in comments throughout the codebase
Diffstat (limited to 'django/http/request.py')
-rw-r--r-- | django/http/request.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/http/request.py b/django/http/request.py index 4f272ec2c7..ded4744a87 100644 --- a/django/http/request.py +++ b/django/http/request.py @@ -231,11 +231,11 @@ class HttpRequest(object): try: self._post, self._files = self.parse_file_upload(self.META, data) except MultiPartParserError: - # An error occured while parsing POST data. Since when + # An error occurred while parsing POST data. Since when # formatting the error the request handler might access # self.POST, set self._post and self._file to prevent # attempts to parse POST data again. - # Mark that an error occured. This allows self.__repr__ to + # Mark that an error occurred. This allows self.__repr__ to # be explicit about it instead of simply representing an # empty POST self._mark_post_parse_error() |