From 11c9958a9826f7771d3f15cdf53ec4ef89b40c72 Mon Sep 17 00:00:00 2001 From: SS Date: Mon, 20 Dec 2021 19:33:37 +0800 Subject: [PATCH] [skip e2e] Fix grammar (#13786) Signed-off-by: sida shen --- docs/design_docs/segcore/segment_growing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/segcore/segment_growing.md b/docs/design_docs/segcore/segment_growing.md index ea198cfc6c..4402a6a94d 100644 --- a/docs/design_docs/segcore/segment_growing.md +++ b/docs/design_docs/segcore/segment_growing.md @@ -12,7 +12,7 @@ Growing segment has the following additional interfaces: Growing segment stores data in the form of chunk. The number of rows in each chunk is restricted by configs. -Rows per segment is controlled by parameters `size_per_Chunk ` config +Rows per segment are controlled by parameters `size_per_Chunk ` config When inserting, first allocate enough space to ensure `total_size <= num_chunk * size_per_chunk`, and then convert data from row format to column format.