summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSantiago Gala <sgala@apache.org>2010-03-04 06:35:52 +0100
committerSantiago Gala <sgala@apache.org>2010-04-13 23:06:29 +0200
commit15f6a3c5138f9d671d5a71160c596367fd22d3be (patch)
tree4688c7de53e8a8311bbf3060e4634e81f430aaad /docs
parentbdfdc0c00df35bade0664fe88414b76fa727e67c (diff)
downloadbottle-15f6a3c5138f9d671d5a71160c596367fd22d3be.tar.gz
Typo senf_->send_
Diffstat (limited to 'docs')
-rw-r--r--docs/docs_0_7.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docs_0_7.md b/docs/docs_0_7.md
index 1d5c0b2..11c020c 100644
--- a/docs/docs_0_7.md
+++ b/docs/docs_0_7.md
@@ -197,7 +197,7 @@ You can directly return file objects, but `static_file()` is the recommended way
from bottle import static_file
@route('/images/:filename#.*\.png#')
- def senf_image(filename):
+ def send_image(filename):
return static_file(filename, root='/path/to/image/files', mimetype='image/png')
@route('/static/:filename')