summaryrefslogtreecommitdiff
path: root/docs/topics/testing.txt
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2008-11-02 21:38:44 +0000
committerKaren Tracey <kmtracey@gmail.com>2008-11-02 21:38:44 +0000
commit834ca580fcde54948894812aa6120fbec747d052 (patch)
treef7fec48cc19cc1632823f0575a8de3710177f243 /docs/topics/testing.txt
parentc4835830235574886f9bd2b54ace5406bea2d931 (diff)
Fixed #9499: Corrected self-reference in test client put method doc. Thanks jroes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9332 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/testing.txt')
-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 540900acf6..ec9ee8a014 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -565,7 +565,7 @@ arguments at time of construction:
Makes an PUT request on the provided ``path`` and returns a
``Response`` object. Useful for testing RESTful interfaces. Acts just
- like :meth:`Client.put` except with the PUT request method.
+ like :meth:`Client.post` except with the PUT request method.
.. method:: Client.delete(path)