diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-08 23:41:33 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-08 23:41:33 +0000 |
| commit | f02861fa930b8b18cd2d51801e67ac2c482ed31a (patch) | |
| tree | dd05eceee630043c2f5e85fca4adaf6be51fc199 /docs | |
| parent | 928e0a180ecd6819e2b812eebaef4a48f5fe3f12 (diff) | |
Fixed bug in docs/request_response.txt. Thanks, Anders Hovmöller
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1868 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/request_response.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/request_response.txt b/docs/request_response.txt index 76882953bb..47e0ec9ccf 100644 --- a/docs/request_response.txt +++ b/docs/request_response.txt @@ -149,7 +149,7 @@ subclass of dictionary. Exceptions are outlined here: * ``__setitem__(key, value)`` -- Sets the given key to ``[value]`` (a Python list whose single element is ``value``). Note that this, as other dictionary functions that have side effects, can only be called on - an immutable ``QueryDict`` (one that was created via ``copy()``). + a mutable ``QueryDict`` (one that was created via ``copy()``). * ``__contains__(key)`` -- **New in Django development version.** Returns ``True`` if the given key is set. This lets you do, e.g., |
