From c7836f9f41e19be06c09747e8ef7ed45c08a6141 Mon Sep 17 00:00:00 2001 From: ryjiang Date: Wed, 20 Oct 2021 19:29:40 +0800 Subject: [PATCH] [skip ci]Format markdown for chap03_index_service.md (#10238) Signed-off-by: ruiyi.jiang --- docs/developer_guides/chap03_index_service.md | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/docs/developer_guides/chap03_index_service.md b/docs/developer_guides/chap03_index_service.md index 9fec86a6df..be2e6d2ee1 100644 --- a/docs/developer_guides/chap03_index_service.md +++ b/docs/developer_guides/chap03_index_service.md @@ -1,9 +1,5 @@ - - ## 3. Index Service - - #### 3.1 Overview @@ -23,9 +19,7 @@ type IndexCoord interface { } ``` - - -* *RegisterNode* +- _RegisterNode_ ```go type MsgBase struct { @@ -56,7 +50,7 @@ type RegisterNodeResponse struct { } ``` -* *BuildIndex* +- _BuildIndex_ ```go type KeyValuePair struct { @@ -79,7 +73,7 @@ type BuildIndexResponse struct { } ``` -* *DropIndex* +- _DropIndex_ ```go type DropIndexRequest struct { @@ -87,7 +81,7 @@ type DropIndexRequest struct { } ``` -* *GetIndexStates* +- _GetIndexStates_ ```go type GetIndexStatesRequest struct { @@ -117,7 +111,7 @@ type GetIndexStatesResponse struct { } ``` -* *GetIndexFilePaths* +- _GetIndexFilePaths_ ```go type GetIndexFilePathsRequest struct { @@ -137,7 +131,7 @@ type GetIndexFilePathsResponse struct { ``` -* *NotifyBuildIndex* +- _NotifyBuildIndex_ ```go type NotifyBuildIndexRequest struct { @@ -148,8 +142,6 @@ type NotifyBuildIndexRequest struct { } ``` - - #### 3.3 Index Node Interface ```go @@ -162,7 +154,7 @@ type IndexNode interface { } ``` -* *BuildIndex* +- _BuildIndex_ ```go @@ -181,7 +173,7 @@ type BuildIndexRequest struct { } ``` -* *DropIndex* +- _DropIndex_ ```go type DropIndexRequest struct {