From 5a26c45bcbef5db0b0eb2be2857b252becb867f0 Mon Sep 17 00:00:00 2001 From: Ryan Har <31252286+nkwwk@users.noreply.github.com> Date: Thu, 12 Jan 2023 21:22:38 +0800 Subject: [PATCH] Update bulk.asciidoc (#1752) 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] }) } })