Django

Code

Changeset 5989

Show
Ignore:
Timestamp:
08/20/07 21:35:01 (1 year ago)
Author:
adrian
Message:

Fixed #5221 -- Fixed typo in docs/testing.txt. Thanks, derelm

Files:

Legend:

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

    r5916 r5989  
    474474 
    475475        >>> c = Client() 
    476         >>> c.get('/login/', {'name': 'fred', 'passwd': 'secret'}) 
     476        >>> c.post('/login/', {'name': 'fred', 'passwd': 'secret'}) 
    477477 
    478478    ...will result in the evaluation of a POST request to this URL::