Skip to content

Commit 29f40c8

Browse files
committed
Update readme.md
1 parent 33155f2 commit 29f40c8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

readme.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ var response = client.LowLevel.SearchPost("myindex","elasticsearchprojects", new
169169

170170
#[Elasticsearch.Net](src/Elasticsearch.Net)
171171

172-
A low level, dependency free, client that has no opinions how you build and represent your requests and responses.
172+
A low-level, dependency free, client that has no opinions how you build and represent your requests and responses.
173173

174174
* Low-level client that provides a one-to-one mapping with the Elasticsearch REST API
175175
* No dependencies
@@ -179,8 +179,6 @@ A low level, dependency free, client that has no opinions how you build and repr
179179
* Load balancing and cluster failover support
180180
* All calls have async variants
181181

182-
## Getting Started
183-
184182
### Installing
185183

186184
From the package manager console:
@@ -196,10 +194,10 @@ Connecting using the low-level client is very similar to how you would connect u
196194
```csharp
197195
var node = new Uri("http://myserver:9200");
198196
var config = new ConnectionConfiguration(node);
199-
var client = new ElasticsearchClient(config);
197+
var client = new ElasticLowLevelClient(config);
200198
```
201199

202-
Note the main difference here is that we are instantiating an `ElasticsearchClient` rather than `ElasticClient`, and `ConnectionConfiguration` instead of `ConnectionSettings`.
200+
Note the main difference here is that we are instantiating an `ElasticLowLevelClient` rather than `ElasticClient`, and `ConnectionConfiguration` instead of `ConnectionSettings`.
203201

204202
### Calling an API endpoint
205203

0 commit comments

Comments
 (0)