Skip to content

Commit

Permalink
fixed changelog and
Browse files Browse the repository at this point in the history
fixed consistency issue in bulk.md

Signed-off-by: Abhinav Garg <[email protected]>
  • Loading branch information
AbhinavGarg90 committed Oct 3, 2023
1 parent 6b82b54 commit eed599c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Changed
- Make handling of long numerals an option that is disabled by default ([#557](https://github.com/opensearch-project/opensearch-js/pull/557))
- Add `enableLongNumeralSupport` to the type definition for `ClientOptions` ([#598](https://github.com/opensearch-project/opensearch-js/pull/598))
- Corrected documentation for bulk.md ([#XXX])
### Deprecated
### Removed
### Fixed
- Corrected documentation for `bulk.md` ([#620](https://github.com/opensearch-project/opensearch-js/pull/620))
### Security

## [2.3.0]
Expand Down
6 changes: 5 additions & 1 deletion guides/bulk.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,5 +182,9 @@ client.bulk({
To clean up the resources created in this guide, delete the `movies` and `books` indices:

```javascript
client.indices.delete({ index: [movies, books] });
client.indices.delete({
index: [movies, books]
}).then((response) => {
console.log(response);
});
```

0 comments on commit eed599c

Please sign in to comment.