summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial03.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/intro/tutorial03.txt
parentc67ea79aa981ae82595d89f8018a41fcd842e7c9 (diff)
Refs #34140 -- Corrected rst code-block and various formatting issues in docs.
Diffstat (limited to 'docs/intro/tutorial03.txt')
-rw-r--r--docs/intro/tutorial03.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index b9c9d2b54e..c0b3b00a51 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -115,7 +115,9 @@ and traverses the patterns in order. After finding the match at ``'polls/'``,
it strips off the matching text (``"polls/"``) and sends the remaining text --
``"34/"`` -- to the 'polls.urls' URLconf for further processing. There it
matches ``'<int:question_id>/'``, resulting in a call to the ``detail()`` view
-like so::
+like so:
+
+.. code-block:: pycon
detail(request=<HttpRequest object>, question_id=34)