summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-08-07 02:47:51 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-08-07 02:47:51 +0000
commit049a246cc4829bce63b2860e4b2e3babf44e7df9 (patch)
tree7e6bf717ba574a9fab0e4f556b6633957c9333dd /docs/ref
parent490bd7f9bc323362dc98c01a88f9e8549dec7d42 (diff)
[1.2.X] Fixed #13687 -- Corrected request/response docs that mistakenly suggested __getitem__ and __delitem__ were case sensitive. Thanks to master for the report.
Backport of r13529 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13535 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/request-response.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index 2c874a1a83..d111e4c127 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -498,11 +498,11 @@ Methods
.. method:: HttpResponse.__delitem__(header)
Deletes the header with the given name. Fails silently if the header
- doesn't exist. Case-sensitive.
+ doesn't exist. Case-insensitive.
.. method:: HttpResponse.__getitem__(header)
- Returns the value for the given header name. Case-sensitive.
+ Returns the value for the given header name. Case-insensitive.
.. method:: HttpResponse.has_header(header)