summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-04-18 12:10:46 -0400
committerTim Graham <timograham@gmail.com>2014-04-18 15:03:57 -0400
commit1816baf4f7de0a1557108e1d26f754eca3e543c0 (patch)
tree157bffbb6e55cb53a050ec858d820217c4beea49 /docs
parenta9ad0818996f2c307f505dca68008841be06e0fc (diff)
[1.7.x] Fixed #22472 -- Clarified meaning of dots in tutorial 4 code block.
Backport of 6b2ce38c49 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial04.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt
index fbccb93a70..72dcde8fc2 100644
--- a/docs/intro/tutorial04.txt
+++ b/docs/intro/tutorial04.txt
@@ -271,7 +271,7 @@ views and use Django's generic views instead. To do so, open the
def vote(request, question_id):
- ....
+ ... # same as above
We're using two generic views here:
:class:`~django.views.generic.list.ListView` and