summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-08-24 09:01:50 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-08-24 09:01:50 +0000
commit27371e3286ae723fb96dfa990eee197454350163 (patch)
treee024cbf9f17a4b51dd28730b717678ddef421a2a /docs/ref
parent78c2c95ed3209c2f0d1ad2c920a580a71bf9807b (diff)
Fixed #8486: Corrected some file attribute names in the request/response docs. Thanks to mrsanders for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8518 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/request-response.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index 34f098b084..f034be9fc9 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -112,9 +112,9 @@ All attributes except ``session`` should be considered read-only.
attributes:
* ``read(num_bytes=None)`` -- Read a number of bytes from the file.
- * ``file_name`` -- The name of the uploaded file.
- * ``file_size`` -- The size, in bytes, of the uploaded file.
- * ``chunk()`` -- A generator that yields sequential chunks of data.
+ * ``name`` -- The name of the uploaded file.
+ * ``size`` -- The size, in bytes, of the uploaded file.
+ * ``chunks(chunk_size=None)`` -- A generator that yields sequential chunks of data.
See :ref:`topics-files` for more information.