summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorAlex Shaindlin <me@ashaindlin.com>2015-02-27 16:56:38 -0500
committerTim Graham <timograham@gmail.com>2015-02-27 17:53:11 -0500
commitdcdef1fe2ec59a7aeca39efc5a29f0d238d0c560 (patch)
tree1a7e6135f3521e3162dc6cc0d4507c00286b7d98 /docs/intro/tutorial01.txt
parent5cf96b49e43daea6d4a0ba1c80c45e90c74f4e47 (diff)
Improved wording in tutorial 1.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt4
1 files 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__``?