Browse Source

Fixed #9904 -- Corrected name of storage method in files documentation.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9668 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Gary Wilson Jr 16 years ago
parent
commit
d66e63f2dc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/topics/files.txt

+ 1 - 1
docs/topics/files.txt

@@ -102,7 +102,7 @@ useful -- you can use the global default storage system::
     >>> path
     u'/path/to/file'
 
-    >>> default_storage.filesize(path)
+    >>> default_storage.size(path)
     11
     >>> default_storage.open(path).read()
     'new content'