From 834ca580fcde54948894812aa6120fbec747d052 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Sun, 2 Nov 2008 21:38:44 +0000 Subject: [PATCH] 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 --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)