summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorGabe De <me@gabe.io>2013-05-15 02:19:59 -0300
committerGabe De <me@gabe.io>2013-05-15 02:19:59 -0300
commit74424b758dae27e9aa2479e1d47751cfa39b1afc (patch)
treef6f7dbf5457a612a53215780875e5dd6b95593ee /README.rst
parent675eee2757048abf0bdb22ba723fd99fd0ebc9c8 (diff)
downloadbottle-74424b758dae27e9aa2479e1d47751cfa39b1afc.tar.gz
Updated url variable syntax.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index bca1022..f475ffe 100644
--- a/README.rst
+++ b/README.rst
@@ -27,7 +27,7 @@ Example
from bottle import route, run
- @route('/hello/:name')
+ @route('/hello/<name>')
def hello(name):
return '<h1>Hello %s!</h1>' % name.title()