Skip to content

Commit 15ae224

Browse files
author
matt swanson
committed
fixing cross-referenced links on quickstart page
1 parent 4046d3b commit 15ae224

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ filesystem. You can access those files by looking at the
548548
:attr:`~flask.request.files` attribute on the request object. Each
549549
uploaded file is stored in that dictionary. It behaves just like a
550550
standard Python :class:`file` object, but it also has a
551-
:meth:`~werkzeug.FileStorage.save` method that allows you to store that
551+
:meth:`~werkzeug.datastructures.FileStorage.save` method that allows you to store that
552552
file on the filesystem of the server. Here is a simple example showing how
553553
that works::
554554

@@ -563,10 +563,10 @@ that works::
563563

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

572572
from flask import request

0 commit comments

Comments
 (0)