Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1540 closed defect (fixed)

Typos in db-api.txt

Reported by: pb@… Owned by: Jacob
Component: Documentation Version: dev
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hope it's OK to post a trivial diff like this inline...

Index: db-api.txt
===================================================================
--- db-api.txt  (revision 2518)
+++ db-api.txt  (working copy)
@@ -655,14 +655,14 @@
 get_FOO_size()
 --------------
 
-For every ``FileField``, the object will have a ``get_FOO_filename()`` method,
+For every ``FileField``, the object will have a ``get_FOO_size()`` method,
 where ``FOO`` is the name of the field. This returns the size of the file, in
 bytes. (Behind the scenes, it uses ``os.path.getsize``.)
 
 save_FOO_file(filename, raw_contents)
 -------------------------------------
 
-For every ``FileField``, the object will have a ``get_FOO_filename()`` method,
+For every ``FileField``, the object will have a ``save_FOO_file()`` method,
 where ``FOO`` is the name of the field. This saves the given file to the
 filesystem, using the given filename. If a file with the given filename already
 exists, Django adds an underscore to the end of the filename (but before the

Change History (1)

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2670]) Fixed #1540 -- Fixed typos in docs/db-api.txt. Thanks, pb

Note: See TracTickets for help on using tickets.
Back to Top