url params docs typo fix

add missing '>' in url params docs example
This commit is contained in:
kamyar 2016-12-11 16:34:22 +02:00 committed by GitHub
parent e3453553e1
commit 6ef6d9a905

View File

@ -39,6 +39,6 @@ class NameView(HTTPMethodView):
def get(self, request, name):
return text('Hello {}'.format(name))
app.add_route(NameView(), '/<name')
app.add_route(NameView(), '/<name>')
```