summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorSusanTan <onceuponatimeforever@gmail.com>2013-07-06 18:24:38 -0700
committerTim Graham <timograham@gmail.com>2013-07-09 07:16:45 -0400
commit5192dbbf5546eb62e1c24d36d91f270b1a2b5eaf (patch)
tree4a240e8aa76008c04018d65d938a9ed352c75bdc /docs/intro
parent0a91a8dbe3e406d5a321bdcea0d1ab82110c157f (diff)
[1.5.x] Fixed #18261 -- Clarified 'project root directory'
Backport of ef3fddf26e from master
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/tutorial01.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index fdd68a6212..a6401545c8 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -98,7 +98,7 @@ Let's look at what :djadmin:`startproject` created::
These files are:
-* The outer :file:`mysite/` directory is just a container for your
+* The outer :file:`mysite/` root directory is just a container for your
project. Its name doesn't matter to Django; you can rename it to anything
you like.
@@ -108,7 +108,7 @@ These files are:
* The inner :file:`mysite/` directory is the actual Python package for your
project. Its name is the Python package name you'll need to use to import
- anything inside it (e.g. ``import mysite.settings``).
+ anything inside it (e.g. ``mysite.urls``).
* :file:`mysite/__init__.py`: An empty file that tells Python that this
directory should be considered a Python package. (Read `more about