From ec5f7cb92e315846cb020b909b0ab7e0489aad05 Mon Sep 17 00:00:00 2001
From: Botond Beres <botondus@gmail.com>
Date: Wed, 25 Oct 2017 19:03:21 -0400
Subject: [PATCH] Fixed typo in docs/ref/models/querysets.txt.

---
 docs/ref/models/querysets.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index a6d837c14b..fe2c827e63 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1939,7 +1939,7 @@ This has a number of caveats though:
   unless the database backend supports it (currently PostgreSQL).
 * It does not work with many-to-many relationships.
 
-The ``batch_size`` parameter controls how many objects are created in single
+The ``batch_size`` parameter controls how many objects are created in a single
 query. The default is to create all objects in one batch, except for SQLite
 where the default is such that at most 999 variables per query are used.