From 1816baf4f7de0a1557108e1d26f754eca3e543c0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 18 Apr 2014 12:10:46 -0400 Subject: [PATCH] [1.7.x] Fixed #22472 -- Clarified meaning of dots in tutorial 4 code block. Backport of 6b2ce38c49 from master --- docs/intro/tutorial04.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt index fbccb93a704..72dcde8fc28 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