From dcdef1fe2ec59a7aeca39efc5a29f0d238d0c560 Mon Sep 17 00:00:00 2001 From: Alex Shaindlin Date: Fri, 27 Feb 2015 16:56:38 -0500 Subject: [PATCH] Improved wording in tutorial 1. --- docs/intro/tutorial01.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 6c740cb654..8fd59408eb 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -668,8 +668,8 @@ of this object. Let's fix that by editing the ``Question`` model (in the return self.choice_text It's important to add :meth:`~django.db.models.Model.__str__` methods to your -models, not only for your own sanity when dealing with the interactive prompt, -but also because objects' representations are used throughout Django's +models, not only for your own convenience when dealing with the interactive +prompt, but also because objects' representations are used throughout Django's automatically-generated admin. .. admonition:: ``__str__`` or ``__unicode__``?