From 1786cbd95bdd434e55966d121ce3b42ada362451 Mon Sep 17 00:00:00 2001 From: Marci W <333176+marciw@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:44:49 -0500 Subject: [PATCH] Fixes for grammar, clarity, ux --- docs/examples/bulk.asciidoc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/examples/bulk.asciidoc b/docs/examples/bulk.asciidoc index e35052e0e..ac2bc0cd4 100644 --- a/docs/examples/bulk.asciidoc +++ b/docs/examples/bulk.asciidoc @@ -1,10 +1,12 @@ [[bulk_examples]] === Bulk -The `bulk` API makes it possible to perform many index/delete operations in a -single API call. This can greatly increase the indexing speed. +With the {jsclient}/api-reference.html#_bulk[`bulk` API], you can perform multiple index/delete operations in a +single API call. The `bulk` API significantly increases indexing speed. -NOTE: Did you know that we provide an helper for sending bulk request? You can find it {jsclient}/client-helpers.html[here]. +NOTE: You can also use the {jsclient}/client-helpers.html[bulk helper]. + +Here's an example that uses the `bulk` API: [source,js] ----