summaryrefslogtreecommitdiff
path: root/django/middleware/gzip.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-08-12 14:14:15 +0000
committerJannis Leidel <jannis@leidel.info>2011-08-12 14:14:15 +0000
commitbce890ace4a97ab7a7a9b918f1452c6592d9b08e (patch)
treebda6cf9653f58e6f77d30a8a26daf8ebe77772ac /django/middleware/gzip.py
parent4a993fab18892596242a0b22c8fbd6c3ae2dde57 (diff)
Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16598 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/middleware/gzip.py')
-rw-r--r--django/middleware/gzip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/middleware/gzip.py b/django/middleware/gzip.py
index 47f75aa416..8e88a8c318 100644
--- a/django/middleware/gzip.py
+++ b/django/middleware/gzip.py
@@ -22,7 +22,7 @@ class GZipMiddleware(object):
if response.has_header('Content-Encoding'):
return response
- # MSIE have issues with gzipped respones of various content types.
+ # MSIE have issues with gzipped response of various content types.
if "msie" in request.META.get('HTTP_USER_AGENT', '').lower():
ctype = response.get('Content-Type', '').lower()
if not ctype.startswith("text/") or "javascript" in ctype: