From 95a4ddd38f556f46d0b51f6bc580e05a6558ad1d Mon Sep 17 00:00:00 2001 From: vzvenyach Date: Fri, 25 Jul 2014 21:41:39 -0400 Subject: [PATCH 1/2] Update quick_start.asciidoc typo --- docs/quick_start.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick_start.asciidoc b/docs/quick_start.asciidoc index 90d44f325..a50cdde7c 100644 --- a/docs/quick_start.asciidoc +++ b/docs/quick_start.asciidoc @@ -2,7 +2,7 @@ == Quick Start === Creating a client -Start using Elasticsearch.js by creating an instance of the `elasticsearch.Client` class. The constructor accepts a config object/hash where you can define defaults values, or even entire classes, for the client to use. For a full list of config options check out the the <>. +Start using Elasticsearch.js by creating an instance of the `elasticsearch.Client` class. The constructor accepts a config object/hash where you can define defaults values, or even entire classes, for the client to use. For a full list of config options check out the the <>. [source,js] ----------------- From 5c5d7e5c078bc3a9c3c1a0884536931ee3b79981 Mon Sep 17 00:00:00 2001 From: Rahul Patel Date: Sat, 19 Jul 2014 14:19:31 +0100 Subject: [PATCH 2/2] Adding esq as an alternative to elastic.js --- docs/_descriptions/search.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_descriptions/search.asciidoc b/docs/_descriptions/search.asciidoc index ac4959560..201fad764 100644 --- a/docs/_descriptions/search.asciidoc +++ b/docs/_descriptions/search.asciidoc @@ -1,4 +1,4 @@ Return documents matching a query, aggregations/facets, highlighted snippets, suggestions, and more. Write your queries as either http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-uri-request.html[simple query strings] in the `q` parameter, or by specifying a http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-body.html[full request definition] using the http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl.html[Elasticsearch Query DSL] in the `body` parameter. -TIP: https://github.com/fullscale/elastic.js[elastic.js] can be used to make building query bodies easier. +TIP: https://github.com/fullscale/elastic.js[elastic.js] or https://github.com/holidayextras/esq[esq] can be used to make building query bodies easier.