From 66058c575887ba958a407e276cadb7a7b05c7767 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Wed, 23 Jun 2021 21:35:15 -0400 Subject: [PATCH] Fixed typo in docs/ref/databases.txt. --- docs/ref/databases.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index d61406198d0..4a1d5d31fde 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -693,9 +693,9 @@ Option MariaDB MySQL =============== ========= ========== When using ``select_for_update()`` on MySQL, make sure you filter a queryset -against at least set of fields contained in unique constraints or only against -fields covered by indexes. Otherwise, an exclusive write lock will be acquired -over the full table for the duration of the transaction. +against at least a set of fields contained in unique constraints or only +against fields covered by indexes. Otherwise, an exclusive write lock will be +acquired over the full table for the duration of the transaction. Automatic typecasting can cause unexpected results --------------------------------------------------