summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-12-24 15:37:36 -0500
committerTim Graham <timograham@gmail.com>2012-12-24 15:38:05 -0500
commitf56f6cfa58345b964ceb2614e4366639381c8f6f (patch)
tree40bb370ad19ecdce9969361102790c8ccfb630ab /docs/intro/tutorial01.txt
parent1c8be95a864540d416602577d1aa03d58ba33168 (diff)
Fixed links to DATABASE ENGINE setting. refs #19516
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 9419f9c4eb..ab6c8b999f 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -207,9 +207,10 @@ your database connection settings.
same physical machine (not used for SQLite). See :setting:`HOST` for details.
If you're new to databases, we recommend simply using SQLite by setting
-:setting:`ENGINE` to ``'django.db.backends.sqlite3'`` and :setting:`NAME` to
-the place where you'd like to store the database. SQLite is included in Python,
-so you won't need to install anything else to support your database.
+:setting:`ENGINE <DATABASE-ENGINE>` to ``'django.db.backends.sqlite3'`` and
+:setting:`NAME` to the place where you'd like to store the database. SQLite is
+included in Python, so you won't need to install anything else to support your
+database.
.. note::