Skip to content

Commit

Permalink
Improved doc exaples. This fixes #370 and #371.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Dec 27, 2011
1 parent a9726c4 commit 065afe5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/quickstart.rst
Expand Up @@ -153,12 +153,12 @@ rule with ``<converter:variable_name>``. Here are some nice examples::
@app.route('/user/<username>') @app.route('/user/<username>')
def show_user_profile(username): def show_user_profile(username):
# show the user profile for that user # show the user profile for that user
pass return 'User %s' % username


@app.route('/post/<int:post_id>') @app.route('/post/<int:post_id>')
def show_post(post_id): def show_post(post_id):
# show the post with the given id, the id is an integer # show the post with the given id, the id is an integer
pass return 'Post %d' % post_id


The following converters exist: The following converters exist:


Expand All @@ -178,11 +178,11 @@ The following converters exist:


@app.route('/projects/') @app.route('/projects/')
def projects(): def projects():
pass return 'The project page'


@app.route('/about') @app.route('/about')
def about(): def about():
pass return 'The about page'


They look rather similar, the difference is the trailing slash in the They look rather similar, the difference is the trailing slash in the
URL *definition*. In the first case, the canonical URL for the URL *definition*. In the first case, the canonical URL for the
Expand Down

0 comments on commit 065afe5

Please sign in to comment.