From f02861fa930b8b18cd2d51801e67ac2c482ed31a Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 8 Jan 2006 23:41:33 +0000 Subject: [PATCH] =?UTF-8?q?Fixed=20bug=20in=20docs/request=5Fresponse.txt.?= =?UTF-8?q?=20Thanks,=20Anders=20Hovm=C3=B6ller?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://code.djangoproject.com/svn/django/trunk@1868 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/request_response.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.,