diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 4337d02..185c837 100644
a
|
b
|
system.
|
488 | 488 | Customizing your *project's* templates |
489 | 489 | -------------------------------------- |
490 | 490 | |
491 | | Create a ``templates`` directory in your project directory. Templates can |
492 | | live anywhere on your filesystem that Django can access. (Django runs as |
493 | | whatever user your server runs.) However, keeping your templates within the |
494 | | project is a good convention to follow. |
| 491 | Create a ``templates`` directory in your project directory (the one that |
| 492 | contains ``manage.py``). Templates can live anywhere on your filesystem that |
| 493 | Django can access. (Django runs as whatever user your server runs.) However, |
| 494 | keeping your templates within the project is a good convention to follow. |
495 | 495 | |
496 | 496 | Open your settings file (:file:`mysite/settings.py`, remember) and add a |
497 | 497 | :setting:`DIRS <TEMPLATES-DIRS>` option in the :setting:`TEMPLATES` setting: |