From 86c676301f4bab911d503d6a5b4de3b1fe023c34 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:17:54 -0400 Subject: [PATCH] python/django: Fix RST spacing --- docs/python/django.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python/django.rst b/docs/python/django.rst index 63a30c8..86750ac 100644 --- a/docs/python/django.rst +++ b/docs/python/django.rst @@ -239,7 +239,7 @@ In order of importance: - Reduce the number of SQL queries (avoid `N+1 queries `__): - - Avoid queries inside a loop. For ``SELECT``, perform a single query before the loop (or do the work in batches). For ``INSERT``and ``UPDATE``, use the `bulk_create `__ and `bulk_update `__ methods after the loop (or do the work in batches). + - Avoid queries inside a loop. For ``SELECT``, perform a single query before the loop (or do the work in batches). For ``INSERT`` and ``UPDATE``, use the `bulk_create `__ and `bulk_update `__ methods after the loop (or do the work in batches). .. warning::