summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorZainab Amir <zainab.amir@arbisoft.com>2021-08-24 10:41:24 +0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-08-26 07:55:56 +0200
commit3445c50a3affc5ae7b1c2712a139d4a5105aeaf5 (patch)
tree2360eedced78edd6c526bcc2ba0c0bdc48c2d4e8 /docs
parentfa1d7ba5b9c7707cae4a23ce9876c0a7abd924a5 (diff)
Made sentence about Model consistent in docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial02.txt8
-rw-r--r--docs/topics/db/index.txt6
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index a24eeec358..f5d277c3b0 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -122,10 +122,10 @@ additional metadata.
.. admonition:: Philosophy
- 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.
+ A model is the single, definitive source of information 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.
This includes the migrations - unlike in Ruby On Rails, for example, migrations
are entirely derived from your models file, and are essentially a
diff --git a/docs/topics/db/index.txt b/docs/topics/db/index.txt
index 032ec30bb5..987bfefc94 100644
--- a/docs/topics/db/index.txt
+++ b/docs/topics/db/index.txt
@@ -4,9 +4,9 @@ Models and databases
.. module:: django.db
-A model is the single, definitive source of data about your data. It contains
-the essential fields and behaviors of the data you're storing. Generally, each
-model maps to a single database table.
+A model is the single, definitive source of information about your data. It
+contains the essential fields and behaviors of the data you're storing.
+Generally, each model maps to a single database table.
.. toctree::
:maxdepth: 1