summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-12-05 08:38:39 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-12-05 08:40:19 +0100
commit6ede5a3cb7ae92d6d8fdbd71805fb4742c672dd9 (patch)
tree080c47024c01a417233ff86908d05fe1b77488a5 /docs/ref
parent7263c7710cfb00628dbefb8f644e8c2c21d94c32 (diff)
[3.0.x] Fixed #31062 -- Doc'd asgi.py in tutorials and project templates.
Backport of 3930ec1bf275d17f1c36cd38b38114177b1d1565 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/applications.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/applications.txt b/docs/ref/applications.txt
index 89ba64e691..c5aa36144e 100644
--- a/docs/ref/applications.txt
+++ b/docs/ref/applications.txt
@@ -22,9 +22,9 @@ The term **project** describes a Django web application. The project Python
package is defined primarily by a settings module, but it usually contains
other things. For example, when you run ``django-admin startproject mysite``
you'll get a ``mysite`` project directory that contains a ``mysite`` Python
-package with ``settings.py``, ``urls.py``, and ``wsgi.py``. The project package
-is often extended to include things like fixtures, CSS, and templates which
-aren't tied to a particular application.
+package with ``settings.py``, ``urls.py``, ``asgi.py`` and ``wsgi.py``. The
+project package is often extended to include things like fixtures, CSS, and
+templates which aren't tied to a particular application.
A **project's root directory** (the one that contains ``manage.py``) is usually
the container for all of a project's applications which aren't installed