From 9f1bab1743d346b8ab7f759a303f2ed29e48514e Mon Sep 17 00:00:00 2001 From: cart0uche Date: Fri, 9 Aug 2013 23:27:05 +0200 Subject: [PATCH] Petites fautes de frappes --- apps/app4_links/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app4_links/urls.py b/apps/app4_links/urls.py index f0c69a85..034f7d1f 100755 --- a/apps/app4_links/urls.py +++ b/apps/app4_links/urls.py @@ -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, @@ -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\w+)/(?P\w+)/$', 'app3_basic_routing.views.hello', name='hello_prefix'),