Skip to content

Commit

Permalink
Merge pull request #832 from AnthonyTsu1984/restful-api
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
AnthonyTsu1984 authored Aug 18, 2023
2 parents 13fcaef + a69c741 commit f1c95ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A MilvusClient interface. This method inserts entities asynchronously into a spe
ListenableFuture<R<MutationResult>> insertAsync(InsertParam requestParam);
```

This method uses the same parameter as [query()](../Query/query().md#QueryParam), invokes the RPC interface and returns a `ListenableFuture` object immediately.
This method uses the same parameter as [insert()](insert().md#InsertParam), invokes the RPC interface and returns a `ListenableFuture` object immediately.

## Example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The order of the returned entities cannot be guaranteed.
ListenableFuture<R<QueryResults>> queryAsync(QueryParam requestParam);
```

This method uses the same parameter as <code><a href="query().md"query()</a></code>. It invokes RPC interface and returns a `ListenableFuture` object immediately.
This method uses the same parameter as <code><a href="query().md">query()</a></code>. It invokes RPC interface and returns a `ListenableFuture` object immediately.

## Example

Expand Down

0 comments on commit f1c95ed

Please sign in to comment.