From a9f8122063a75d5dc7e7727a55e2019fe2e0b23d Mon Sep 17 00:00:00 2001 From: Spencer Alger Date: Thu, 10 Jul 2014 18:04:15 -0700 Subject: [PATCH] applied 92163835a08fedbc7fb583eb36d604a0e4f287ec to the example source --- docs/_examples/index.asciidoc | 2 +- docs/api_methods_0_90.asciidoc | 2 +- docs/api_methods_1_0.asciidoc | 2 +- docs/api_methods_1_1.asciidoc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/_examples/index.asciidoc b/docs/_examples/index.asciidoc index 028975e12..10c710ec6 100644 --- a/docs/_examples/index.asciidoc +++ b/docs/_examples/index.asciidoc @@ -10,7 +10,7 @@ client.index({ tags: ['y', 'z'], published: true, } -}, function (error response) { +}, function (error, response) { }); --------- \ No newline at end of file diff --git a/docs/api_methods_0_90.asciidoc b/docs/api_methods_0_90.asciidoc index 6eb447ec1..d21bb7852 100644 --- a/docs/api_methods_0_90.asciidoc +++ b/docs/api_methods_0_90.asciidoc @@ -740,7 +740,7 @@ client.index({ tags: ['y', 'z'], published: true, } -}, function (error response) { +}, function (error, response) { }); --------- diff --git a/docs/api_methods_1_0.asciidoc b/docs/api_methods_1_0.asciidoc index 4146080cc..a0f9fedeb 100644 --- a/docs/api_methods_1_0.asciidoc +++ b/docs/api_methods_1_0.asciidoc @@ -835,7 +835,7 @@ client.index({ tags: ['y', 'z'], published: true, } -}, function (error response) { +}, function (error, response) { }); --------- diff --git a/docs/api_methods_1_1.asciidoc b/docs/api_methods_1_1.asciidoc index 0efd8c1cd..fd3900892 100644 --- a/docs/api_methods_1_1.asciidoc +++ b/docs/api_methods_1_1.asciidoc @@ -849,7 +849,7 @@ client.index({ tags: ['y', 'z'], published: true, } -}, function (error response) { +}, function (error, response) { }); ---------