Skip to content

Commit

Permalink
Fixed #18261 -- Clarified 'project root directory'
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcTanSusan authored and timgraham committed Jul 9, 2013
1 parent 95eb68c commit ef3fddf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/intro/tutorial01.txt
Expand Up @@ -99,7 +99,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.

Expand All @@ -109,7 +109,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
Expand Down
5 changes: 3 additions & 2 deletions docs/topics/i18n/translation.txt
Expand Up @@ -1238,8 +1238,9 @@ German.

The script should be run from one of two places:

* The root directory of your Django project.
* The root directory of your Django app.
* The root directory of your Django project (the one that contains
``manage.py``).
* The root directory of one of your Django apps.

The script runs over your project source tree or your application source tree
and pulls out all strings marked for translation (see
Expand Down

0 comments on commit ef3fddf

Please sign in to comment.