diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 23c05ba..2f2e049 100644
a
|
b
|
code, then run the following command:
|
41 | 41 | .. code-block:: bash |
42 | 42 | |
43 | 43 | django-admin.py startproject mysite |
44 | | |
| 44 | |
45 | 45 | This will create a ``mysite`` directory in your current directory. |
46 | 46 | |
47 | 47 | .. admonition:: Script name may differ in distribution packages |
… |
… |
module-level variables representing Django settings. Change the
|
173 | 173 | following keys in the :setting:`DATABASES` ``'default'`` item to match |
174 | 174 | your databases connection settings. |
175 | 175 | |
176 | | * :setting:`ENGINE` -- Either |
| 176 | * :setting:`ENGINE <DATABASE-ENGINE>` -- Either |
177 | 177 | ``'django.db.backends.postgresql_psycopg2'``, |
178 | 178 | ``'django.db.backends.mysql'`` or |
179 | 179 | ``'django.db.backends.sqlite3'``. Other backends are |
180 | | :setting:`also available <ENGINE>`. |
| 180 | :setting:`also available <DATABASE-ENGINE>`. |
181 | 181 | |
182 | 182 | * :setting:`NAME` -- The name of your database. If you're using |
183 | 183 | SQLite, the database will be a file on your computer; in that |
… |
… |
Save these changes and start a new Python interactive shell by running
|
692 | 692 | |
693 | 693 | For more information on model relations, see :doc:`Accessing related objects |
694 | 694 | </ref/models/relations>`. For more on how to use double underscores to perform |
695 | | field lookups via the API, see `Field lookups`__. For full details on the |
| 695 | field lookups via the API, see `Field lookups`__. For full details on the |
696 | 696 | database API, see our :doc:`Database API reference </topics/db/queries>`. |
697 | 697 | |
698 | 698 | __ http://docs.djangoproject.com/en/1.2/topics/db/queries/#field-lookups |