From 01bfa9219b921267a8b94ed77e5984f9ce15497a Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Thu, 8 Feb 2018 14:33:45 +0500 Subject: [PATCH] Fixed typo in bulk_create() documentation. --- 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 c3395e9c9ae..be07f0821d8 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -1988,7 +1988,7 @@ This has a number of caveats though: from itertools import islice batch_size = 100 - objs = (Entry(headling'Test %s' % i) for i in range(1000)) + objs = (Entry(headline='Test %s' % i) for i in range(1000)) while True: batch = list(islice(objs, batch_size)) if not batch: