From cafa184ea541efa517a6dfc51fbdedf766859ff4 Mon Sep 17 00:00:00 2001 From: groot Date: Wed, 8 Dec 2021 10:39:26 +0800 Subject: [PATCH] [skip ci] Add note for design doc (#12936) Signed-off-by: yhmo --- docs/design_docs/milvus_proto.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/design_docs/milvus_proto.md b/docs/design_docs/milvus_proto.md index 95ed6af0f5..66e6e8547e 100644 --- a/docs/design_docs/milvus_proto.md +++ b/docs/design_docs/milvus_proto.md @@ -266,7 +266,7 @@ message DescribeCollectionRequest { // Not useful for now string db_name = 2; - // The collection name you want to describe, you can pass collection_name or collectionID + // The collection name you want to describe, you can pass collection_name or collectionID. (Required) string collection_name = 3; // The collection ID you want to describe @@ -326,7 +326,7 @@ message GetCollectionStatisticsRequest { common.MsgBase base = 1; // Not useful for now string db_name = 2; - // The collection name you want get statistics + // The collection name you want get statistics. (Required) string collection_name = 3; } ```