From 808722e062ff261af4f24342b15fcf67c37c5cf0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 26 Aug 2014 10:00:33 -0400 Subject: [PATCH] [1.7.x] Fixed #23362 -- Clarified "database columns as attributes" in tutorial. Backport of 035f2e699c from master --- docs/intro/tutorial01.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 1641ed2e17..dcddf86b8c 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -641,7 +641,7 @@ Once you're in the shell, explore the :doc:`database API `:: >>> q.id 1 - # Access database columns via Python attributes. + # Access model field values via Python attributes. >>> q.question_text "What's new?" >>> q.pub_date