summaryrefslogtreecommitdiff
path: root/docs
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:54:31 -0500
commit9cd8343cc3776abe6d5b5a96270189532f45788e (patch)
tree0f2c9b73ecac21ebaf4cbd1edeaf34847e8f6558 /docs
parent0831a43c3afc3f93b8ed0c58630836e38248be12 (diff)
[1.7.x] Improved wording in tutorial 1.
Backport of dcdef1fe2ec59a7aeca39efc5a29f0d238d0c560 from master
Diffstat (limited to 'docs')
-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 0a80c84bd3..6f4a30760f 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -670,8 +670,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__``?