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:27 -0500
commit5a3b59370c9da4232206dd38f84de458ade7d062 (patch)
treec7960a7f7cb4baafd119fddec2fc110cb3bd2976 /docs
parentb825ec38c1e16a271c69694562963eadbe0c6352 (diff)
[1.8.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 1e85461d21..b91c1dae0e 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -671,8 +671,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__``?