Rename example in docs for clarity

This commit is contained in:
Ben Darnell 2012-03-24 14:53:06 -07:00
parent 40dc1f098a
commit b41734bcb8
1 changed files with 2 additions and 2 deletions

View File

@ -81,9 +81,9 @@ You can get query string arguments and parse ``POST`` bodies with the
::
class MainHandler(tornado.web.RequestHandler):
class MyFormHandler(tornado.web.RequestHandler):
def get(self):
self.write('<html><body><form action="/" method="post">'
self.write('<html><body><form action="/myform" method="post">'
'<input type="text" name="message">'
'<input type="submit" value="Submit">'
'</form></body></html>')