From 578dc3d89b8c8db26b43089396a4a96057f17616 Mon Sep 17 00:00:00 2001 From: Ryan Har <31252286+nkwwk@users.noreply.github.com> Date: Thu, 18 Aug 2022 13:04:24 +0800 Subject: [PATCH] Update bulk.asciidoc Fix typo --- docs/examples/bulk.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/bulk.asciidoc b/docs/examples/bulk.asciidoc index c6117c249..8d470a305 100644 --- a/docs/examples/bulk.asciidoc +++ b/docs/examples/bulk.asciidoc @@ -77,8 +77,8 @@ async function run () { // fix the document before to try it again. status: action[operation].status, error: action[operation].error, - operation: body[i * 2], - document: body[i * 2 + 1] + operation: operations[i * 2], + document: operations[i * 2 + 1] }) } })