Django

Code

Changeset 7913

Show
Ignore:
Timestamp:
07/13/08 03:45:17 (4 months ago)
Author:
russellm
Message:

Fixed #7737 -- Corrected a comment in the testing docs to be PEP257 compliant. Thanks to msas@telia.com for the report.

Files:

Legend:

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

    r7900 r7913  
    9090 
    9191        def add_two(num): 
    92             "Adds 2 to the given number and returns the result." 
     92            "Return the result of adding two to the provided number." 
    9393            return num + 2 
    9494