diff --git a/docs/patterns/fileuploads.rst b/docs/patterns/fileuploads.rst
index 7a3cd28e..95c0032f 100644
--- a/docs/patterns/fileuploads.rst
+++ b/docs/patterns/fileuploads.rst
@@ -71,7 +71,7 @@ the file and redirects the user to the URL for the uploaded file::
Upload new File
Upload new File
-
@@ -104,9 +104,9 @@ before storing it directly on the filesystem.
>>> secure_filename('../../../../home/username/.bashrc')
'home_username_.bashrc'
-Now one last thing is missing: the serving of the uploaded files. In the
-:func:`upload_file()` we redirect the user to
-``url_for('uploaded_file', filename=filename)``, that is, ``/uploads/filename``.
+Now one last thing is missing: the serving of the uploaded files. In the
+:func:`upload_file()` we redirect the user to
+``url_for('uploaded_file', filename=filename)``, that is, ``/uploads/filename``.
So we write the :func:`uploaded_file` function to return the file of that name. As
of Flask 0.5 we can use a function that does that for us::
diff --git a/docs/patterns/flashing.rst b/docs/patterns/flashing.rst
index dc20a08c..7efd1446 100644
--- a/docs/patterns/flashing.rst
+++ b/docs/patterns/flashing.rst
@@ -78,7 +78,7 @@ And here is the :file:`login.html` template which also inherits from
{% if error %}
Error: {{ error }}
{% endif %}
-