Skip to content

Commit

Permalink
Merge pull request #4 from cart0uche/master
Browse files Browse the repository at this point in the history
Petites fautes de frappes
  • Loading branch information
sametmax committed Aug 16, 2013
2 parents 98fd873 + 9f1bab1 commit 92793d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/app4_links/urls.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

"""
When you start having a lot a routes, you can give them names, and
When you start having a lot of routes, you can give them names, and
refer to this name later, when you want a link for them.
Here we will use the SAME urls and views as in the previous app,
Expand All @@ -28,7 +28,7 @@
url(r'app2_included/', include('app2_hello_again.urls'), name="include"),

# In Python it's allowed to move parameters on another line, so we use
# this to stack them so it doesn't make a loooooooooooon line.
# this to stack them so it doesn't make a loooooooooooong line.
url(r'(?P<name>\w+)/(?P<prefix>\w+)/$',
'app3_basic_routing.views.hello',
name='hello_prefix'),
Expand Down

0 comments on commit 92793d6

Please sign in to comment.