From 8d2ac000e43c1cfa3d331a1580525ead3d5f32d7 Mon Sep 17 00:00:00 2001
From: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Date: Wed, 1 Mar 2023 13:00:10 +0100
Subject: [PATCH] [4.2.x] Refs #34140 -- Made minor edits to rst code-blocks.

Backport of 9cf2a5df70051dffcefe21c6b27203e2d5804922 from main
---
 docs/topics/performance.txt   | 10 +++++++---
 docs/topics/testing/tools.txt |  4 +++-
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/docs/topics/performance.txt b/docs/topics/performance.txt
index 04554226c0..4ba71880c4 100644
--- a/docs/topics/performance.txt
+++ b/docs/topics/performance.txt
@@ -120,9 +120,13 @@ do them faster than the template language can::
     # of the Python objects
     len(my_bicycles)
 
-    # Django template filter
-    # slower still, because it will have to count them in Python anyway,
-    # and because of template language overheads
+.. code-block:: html+django
+
+    <!--
+    Django template filter
+    slower still, because it will have to count them in Python anyway,
+    and because of template language overheads
+    -->
     {{ my_bicycles|length }}
 
 Generally speaking, the most appropriate level for the job is the lowest-level
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 4cfeb04eaf..abd8d9d01b 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -254,7 +254,9 @@ Use the ``django.test.Client`` class to make requests.
 
             /login/
 
-        ...with this POST data::
+        ...with this POST data:
+
+        .. code-block:: text
 
             name=fred&passwd=secret