summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-21 02:35:01 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-21 02:35:01 +0000
commita3a07af91060363e21cad1621820cae5f2bf9524 (patch)
tree3d85d277585b63b5c0295024756e6d860c2d5248 /docs
parentc06524bc2d132e80cb4602e5b8bffc6f3378b5d4 (diff)
Fixed #5221 -- Fixed typo in docs/testing.txt. Thanks, derelm
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5989 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index f189aa4578..e27479cc34 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -473,7 +473,7 @@ Once you have a ``Client`` instance, you can call any of the following methods:
data. For example::
>>> c = Client()
- >>> c.get('/login/', {'name': 'fred', 'passwd': 'secret'})
+ >>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'})
...will result in the evaluation of a POST request to this URL::