[skip ci] Fix typo in query coordinator developer guide (#11571)

Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
This commit is contained in:
edward.zeng 2021-11-10 20:05:56 +08:00 committed by GitHub
parent 2cf7bb8a5b
commit 1c242b3b7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,10 +214,10 @@ type SearchMsg struct {
}
```
- _RetriveMsg_
- _RetrieveMsg_
```go
type RetriveRequest struct {
type RetrieveRequest struct {
Base *commonpb.MsgBase
ResultChannelID string
DbID int64
@ -229,7 +229,7 @@ type RetriveRequest struct {
GuaranteeTimestamp uint64
}
type RetriveMsg struct {
type RetrieveMsg struct {
BaseMsg
RetrieveRequest
}