Skip to content

Commit

Permalink
fixing cross-referenced links on quickstart page
Browse files Browse the repository at this point in the history
  • Loading branch information
matt swanson committed Mar 14, 2011
1 parent 4046d3b commit 15ae224
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/quickstart.rst
Expand Up @@ -548,7 +548,7 @@ filesystem. You can access those files by looking at the
:attr:`~flask.request.files` attribute on the request object. Each
uploaded file is stored in that dictionary. It behaves just like a
standard Python :class:`file` object, but it also has a
:meth:`~werkzeug.FileStorage.save` method that allows you to store that
:meth:`~werkzeug.datastructures.FileStorage.save` method that allows you to store that
file on the filesystem of the server. Here is a simple example showing how
that works::

Expand All @@ -563,10 +563,10 @@ that works::

If you want to know how the file was named on the client before it was
uploaded to your application, you can access the
:attr:`~werkzeug.FileStorage.filename` attribute. However please keep in
:attr:`~werkzeug.datastructures.FileStorage.filename` attribute. However please keep in
mind that this value can be forged so never ever trust that value. If you
want to use the filename of the client to store the file on the server,
pass it through the :func:`~werkzeug.secure_filename` function that
pass it through the :func:`~werkzeug.utils.secure_filename` function that
Werkzeug provides for you::

from flask import request
Expand Down

0 comments on commit 15ae224

Please sign in to comment.