Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/docset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ toc:
- toc: reference
subs:
es: "Elasticsearch"
version: "9.0.0-alpha.1"
2 changes: 1 addition & 1 deletion docs/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The Elasticsearch Rust client is forward compatible; meaning that the client sup

## Create a client [_create_a_client]

To create a client to make API calls to Elasticsearch running on `\https://localhost:9200`
To create a client to make API calls to Elasticsearch running on `https://localhost:9200`

```rust
let client = Elasticsearch::default();
Expand Down
8 changes: 4 additions & 4 deletions docs/reference/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ mapped_pages:

Add `elasticsearch` crate and version to Cargo.toml. Choose the version that is compatible with the version of {{es}} you are using:

```toml
```toml subs=true
[dependencies]
elasticsearch = "8.7.0-alpha.1"
elasticsearch = "{{version}}"
```

The following *optional* dependencies may also be useful to create requests and read responses:

```toml
serde = "~1"
serde_json = "~1"
serde = "1"
serde_json = "1"
```

Loading