summaryrefslogtreecommitdiff
path: root/docs/tutorial.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial.rst')
-rwxr-xr-xdocs/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial.rst b/docs/tutorial.rst
index 39fa40c..d867435 100755
--- a/docs/tutorial.rst
+++ b/docs/tutorial.rst
@@ -200,7 +200,7 @@ The POST method is commonly used for HTML form submission. This example shows ho
return '''<form method="POST">
<input name="name" type="text" />
<input name="password" type="password" />
- </from>'''
+ </form>'''
@post('/login') # or @route('/login', method='POST')
def login_submit():