From a6f0b6a98fef540ae88a61fa4104fc60a1c8eb76 Mon Sep 17 00:00:00 2001 From: Brian Scoles Date: Wed, 24 Dec 2014 20:13:10 -0800 Subject: [PATCH] Fixed typo in docs/intro/tutorial01.txt. --- docs/intro/tutorial01.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 `. The goal is to define your data model in one place and automatically derive things from it.