summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorBurhanuddin Baharuddin <burhan_loey@yahoo.com.my>2018-04-19 17:09:38 +0800
committerCarlton Gibson <carlton.gibson@noumenal.es>2018-04-19 11:09:38 +0200
commitc2598a6f4d3ddaf27e9d6d240e7efe664504d6ad (patch)
treefe653c4fef280b61877955684f78a861f51b80ee /docs/intro
parenta917a5601f145042f31d0e2011bc41c2a3aaea7c (diff)
Clarified wording in tutorial text.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/tutorial05.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index 1f6a53ebee..28b79f6962 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -188,10 +188,9 @@ Put the following in the ``tests.py`` file in the ``polls`` application:
future_question = Question(pub_date=time)
self.assertIs(future_question.was_published_recently(), False)
-What we have done here is created a :class:`django.test.TestCase` subclass
-with a method that creates a ``Question`` instance with a ``pub_date`` in the
-future. We then check the output of ``was_published_recently()`` - which
-*ought* to be False.
+Here we have created a :class:`django.test.TestCase` subclass with a method that
+creates a ``Question`` instance with a ``pub_date`` in the future. We then check
+the output of ``was_published_recently()`` - which *ought* to be False.
Running tests
-------------