summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2014-03-02 17:05:57 +0100
committerBaptiste Mispelon <bmispelon@gmail.com>2014-03-02 17:21:10 +0100
commit4aaea2921d7c98dd98fc99596239f8863cb312cc (patch)
treeeda1aa3c43b72bae835ee47f4219af6c78cd138a /docs/intro
parent5cda1d27027ea74d8a1b53e43bef697cd4426e9a (diff)
[1.6.x] Fixed some typos in the documentation.
Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch. Partial backport of ea4da8e63c314b4f7cbcb4dd06eef466c1e872ed from master.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/tutorial05.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index 54b7596609..2eb8b53e56 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -350,7 +350,7 @@ With that ready, we can ask the client to do some work for us::
>>> response.status_code
404
>>> # on the other hand we should expect to find something at '/polls/'
- >>> # we'll use 'reverse()' rather than a harcoded URL
+ >>> # we'll use 'reverse()' rather than a hardcoded URL
>>> from django.core.urlresolvers import reverse
>>> response = client.get(reverse('polls:index'))
>>> response.status_code