Django

Code

Changeset 6793

Show
Ignore:
Timestamp:
12/01/07 11:33:14 (1 year ago)
Author:
adrian
Message:

Small docstring edit in django/http/utils.py from [6662]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/http/utils.py

    r6662 r6793  
    66# everything else, including all response middleware. Think of them as 
    77# "compulsory response middleware". Be careful about what goes here, because 
    8 # it's a little fiddly to override this behaviour, so they should be truly 
     8# it's a little fiddly to override this behavior, so they should be truly 
    99# universally applicable. 
    1010 
     
    1414    response. This is required by RFC 2616, section 14.30. 
    1515 
    16     Code constructing response objects is free to insert relative paths and 
     16    Code constructing response objects is free to insert relative paths, as 
    1717    this function converts them to absolute paths. 
    1818    """ 
     
    3232        response.content = '' 
    3333    return response 
    34