summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2012-10-11 15:40:38 -0300
committerRamiro Morales <cramm0@gmail.com>2012-10-11 15:40:38 -0300
commit0614e99fbdb9d14a57035da320a4fc7aca232469 (patch)
tree7214d85ba6f57adcd15bd4faa620b5372a7ed0cb /docs
parent0921b74e695931c5f76414546d34da874079a6c3 (diff)
More URL reversion docs typo fixes.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/http/urls.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 7b5d3ded63..e178df2af2 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -567,9 +567,9 @@ Consider again this URLconf entry::
from django.conf.urls import patterns, url
urlpatterns = patterns('',
- #...
+ #...
url(r'^articles/(\d{4})/$', 'news.views.year_archive'),
- #...
+ #...
)
According to this design, the URL for the archive corresponding to year *nnnn*
@@ -598,7 +598,7 @@ Or in Python code::
# ...
return HttpResponseRedirect(reverse('news.views.year_archive', args=(year,)))
-If, for some reason, it was decided that the URL where content for yearly
+If, for some reason, it was decided that the URLs where content for yearly
article archives are published at should be changed then you would only need to
change the entry in the URLconf.