Skip to content

Commit

Permalink
[DOCS] Fix typo (#76911)
Browse files Browse the repository at this point in the history
  • Loading branch information
weensy committed Aug 25, 2021
1 parent 25984d1 commit a50a8f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/java-rest/high-level/migration.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ transportClient.delete(request, new ActionListener<DeleteResponse>() { // <2>
});
--------------------------------------------------
<1> Create the `DeleteRequest` using its constructor
<2> Execute the `DeleteRequest` by passing the request and a
<2> Execute the `DeleteRequest` by passing the request and an
`ActionListener` that gets called on execution completion or
failure. This method does not block and returns immediately.
<3> The `onResponse()` method is called when the response is
Expand All @@ -234,7 +234,7 @@ The same request asynchronously executed using the high-level client is:
include-tagged::{doc-tests}/MigrationDocumentationIT.java[migration-request-async-execution]
--------------------------------------------------
<1> Create the `DeleteRequest` using its constructor
<2> Execute the `DeleteRequest` by passing the request and a
<2> Execute the `DeleteRequest` by passing the request and an
`ActionListener` that gets called on execution completion or
failure. This method does not block and returns immediately.
<3> The `onResponse()` method is called when the response is
Expand Down

0 comments on commit a50a8f9

Please sign in to comment.