summaryrefslogtreecommitdiff
path: root/django/middleware
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-28 17:39:14 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-05-28 17:39:14 -0700
commit1dcc603efff8229838f27019668d864a0bcbfa59 (patch)
tree8c67764f440faeb095143498383ca57ecd4f09be /django/middleware
parente79725cdf90e3271626ed66f70b63640d3fcc521 (diff)
Fixed several typos in Django
Diffstat (limited to 'django/middleware')
-rw-r--r--django/middleware/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/middleware/http.py b/django/middleware/http.py
index 9954267196..8e4bc55881 100644
--- a/django/middleware/http.py
+++ b/django/middleware/http.py
@@ -3,7 +3,7 @@ from django.utils.http import http_date, parse_http_date_safe
class ConditionalGetMiddleware(object):
"""
- Handles conditional GET operations. If the response has a ETag or
+ Handles conditional GET operations. If the response has an ETag or
Last-Modified header, and the request has If-None-Match or
If-Modified-Since, the response is replaced by an HttpNotModified.