From 035f2e699c3f7fbd41bc5ba0a59551e4c3dbdba6 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 26 Aug 2014 10:00:33 -0400 Subject: [PATCH] Fixed #23362 -- Clarified "database columns as attributes" in tutorial. --- 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 9fe240f261..14a56c64a3 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -643,7 +643,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