Django

Code

Changeset 9332

Show
Ignore:
Timestamp:
11/02/08 15:38:44 (2 months ago)
Author:
kmtracey
Message:

Fixed #9499: Corrected self-reference in test client put method doc. Thanks jroes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/topics/testing.txt

    r9188 r9332  
    566566        Makes an PUT request on the provided ``path`` and returns a 
    567567        ``Response`` object. Useful for testing RESTful interfaces. Acts just 
    568         like :meth:`Client.put` except with the PUT request method. 
     568        like :meth:`Client.post` except with the PUT request method. 
    569569 
    570570    .. method:: Client.delete(path)