Django

Code

Changeset 2824

Show
Ignore:
Timestamp:
05/03/06 15:01:11 (3 years ago)
Author:
adrian
Message:

Fixed typos in docs/db-api.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r2820 r2824  
    15261526-------------- 
    15271527 
    1528 For every ``FileField``, the object will have a ``get_FOO_filename()`` method, 
     1528For every ``FileField``, the object will have a ``get_FOO_size()`` method, 
    15291529where ``FOO`` is the name of the field. This returns the size of the file, in 
    15301530bytes. (Behind the scenes, it uses ``os.path.getsize``.) 
     
    15331533------------------------------------- 
    15341534 
    1535 For every ``FileField``, the object will have a ``get_FOO_filename()`` method, 
     1535For every ``FileField``, the object will have a ``save_FOO_file()`` method, 
    15361536where ``FOO`` is the name of the field. This saves the given file to the 
    15371537filesystem, using the given filename. If a file with the given filename already