1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

[1.7.x] Fix many many typos in comments throughout the codebase

Backport of 2bcb8bfc8d from master
This commit is contained in:
Alex Gaynor
2014-04-26 10:18:45 -07:00
committed by Tim Graham
parent 3bb0f118ca
commit 996564df4d
53 changed files with 79 additions and 80 deletions

View File

@@ -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()