summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-11-24 19:51:31 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-11-24 19:51:31 +0000
commit4a4d7bc27deb2219d534986f825f0a4fd7d55027 (patch)
tree16a825baa1009963534242f00e46225c5f4cb995 /docs
parent073412b411c72b1ee0aeb8cc5ae6c03828347447 (diff)
Fixed #14771 -- corrected a typo in the testing docs. Thanks to Christian Oudard for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14694 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 3c5eb59211..64ed824840 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -761,7 +761,7 @@ arguments at time of construction:
parameters will be made available in the request.GET data. For example,
if you were to make the request::
- >>> c.post('/login/?vistor=true', {'name': 'fred', 'passwd': 'secret'})
+ >>> c.post('/login/?visitor=true', {'name': 'fred', 'passwd': 'secret'})
... the view handling this request could interrogate request.POST
to retrieve the username and password, and could interrogate request.GET