From 4a45345fc44f60275b91c47031dd44abce02f596 Mon Sep 17 00:00:00 2001 From: Dag Odenhall Date: Wed, 12 Jan 2011 10:38:20 +0100 Subject: [PATCH] Fix typo in send_file docs Signed-off-by: Armin Ronacher --- flask/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/helpers.py b/flask/helpers.py index 9d64c198..eb12eee6 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -266,7 +266,7 @@ def send_file(filename_or_fp, mimetype=None, as_attachment=False, By default it will try to guess the mimetype for you, but you can also explicitly provide one. For extra security you probably want - to sent certain files as attachment (HTML for instance). The mimetype + to send certain files as attachment (HTML for instance). The mimetype guessing requires a `filename` or an `attachment_filename` to be provided.