Commit 27371e32 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #8486: Corrected some file attribute names in the request/response docs....

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
parent 78c2c95e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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.