Skip to content

Commit 883ed77

Browse files
committed
Revert "[DOCS] Replaces es attributes with Elasticsearch."
This reverts commit 959bf0d.
1 parent 959bf0d commit 883ed77

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/overview.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[[overview]]
22
== Overview
33

4-
This is the official PHP client for Elasticsearch. It is designed to be a
5-
low-level client that does not stray from the REST API.
4+
This is the official PHP client for {es}. It is designed to be a low-level
5+
client that does not stray from the REST API.
66

77
All methods closely match the REST API, and furthermore, match the method
88
structure of other language clients (Ruby, Python, etc). We hope that this

docs/quickstart.asciidoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ print_r($response);
6464

6565
The response that you get back indicates that the document was created in the
6666
index that you specified. The response is an associative array containing a
67-
decoded version of the JSON that Elasticsearch returns:
67+
decoded version of the JSON that {es} returns:
6868

6969
[source,php]
7070
----------------------------
@@ -97,7 +97,7 @@ print_r($response);
9797

9898

9999
The response contains metadata such as index, version, and so on as well as a
100-
`_source` field, which is the original document you sent to Elasticsearch.
100+
`_source` field, which is the original document you sent to {es}.
101101

102102
[source,php]
103103
----------------------------
@@ -119,8 +119,8 @@ Array
119119

120120
=== Search for a document
121121

122-
Searching is a hallmark of Elasticsearch, so let's perform a search. We are
123-
going to use the `match` query as a demonstration:
122+
Searching is a hallmark of {es}, so let's perform a search. We are going to use
123+
the `match` query as a demonstration:
124124

125125
[source,php]
126126
----------------------------
@@ -214,9 +214,9 @@ Array
214214

215215
=== Delete an index
216216

217-
Due to the dynamic nature of Elasticsearch, the first document you added
218-
automatically built an index with some default settings. Delete that index and
219-
specify your own settings later:
217+
Due to the dynamic nature of {es}, the first document you added automatically
218+
built an index with some default settings. Delete that index and specify your
219+
own settings later:
220220

221221
[source,php]
222222
----------------------------
@@ -259,7 +259,7 @@ $response = $client->indices()->create($params);
259259
print_r($response);
260260
----------------------------
261261

262-
Elasticsearch now creates that index with your chosen settings and return an
262+
{es} now creates that index with your chosen settings and return an
263263
acknowledgement:
264264

265265
[source,php]
@@ -274,8 +274,8 @@ Array
274274
=== Wrap up
275275

276276
That was just a crash-course overview of the client and it's syntax. If you are
277-
familiar with Elasticsearch, you'll notice that the methods are named just like
278-
REST endpoints.
277+
familiar with {es}, you'll notice that the methods are named just like REST
278+
endpoints.
279279

280280
You may also notice that the client is configured in a manner that facilitates
281281
easy discovery via your IDE. All core actions are available under the `$client`

0 commit comments

Comments
 (0)