summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorBrian Scoles <brianscoles@gmail.com>2014-12-24 20:13:10 -0800
committerTim Graham <timograham@gmail.com>2014-12-25 06:56:23 -0500
commita6f0b6a98fef540ae88a61fa4104fc60a1c8eb76 (patch)
tree81750f37d85700dbf7f017e85ce7a7a09c67983d /docs/intro/tutorial01.txt
parent426ead27bd2a38766017d9332ae4143ad9c7a2ab (diff)
Fixed typo in docs/intro/tutorial01.txt.
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index b227219e6f..8c9c4a30e7 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -327,7 +327,7 @@ The first step in writing a database Web app in Django is to define your models
.. admonition:: Philosophy
- A model is the single, definitive source of data about your data. It contains
+ A model is the single, definitive source of truth about your data. It contains
the essential fields and behaviors of the data you're storing. Django follows
the :ref:`DRY Principle <dry>`. The goal is to define your data model in one
place and automatically derive things from it.