summaryrefslogtreecommitdiff
path: root/docs/ref/applications.txt
diff options
context:
space:
mode:
authorJoseph Victor Zammit <jvzammit@gmail.com>2023-01-23 21:29:05 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-02-28 12:21:37 +0100
commitba755ca13123d2691a0926ddb64e5d0a2906a880 (patch)
tree283bacaa7d29dc42466000ef18ece04e854d50a4 /docs/ref/applications.txt
parentc67ea79aa981ae82595d89f8018a41fcd842e7c9 (diff)
Refs #34140 -- Corrected rst code-block and various formatting issues in docs.
Diffstat (limited to 'docs/ref/applications.txt')
-rw-r--r--docs/ref/applications.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/applications.txt b/docs/ref/applications.txt
index 7649f86132..916c309edd 100644
--- a/docs/ref/applications.txt
+++ b/docs/ref/applications.txt
@@ -76,9 +76,9 @@ Alternatively, :setting:`INSTALLED_APPS` may contain the dotted path to a
configuration class to specify it explicitly::
INSTALLED_APPS = [
- ...
+ ...,
'polls.apps.PollsAppConfig',
- ...
+ ...,
]
For application authors