From b2afc6194de302f4e70174654d6ed03761d5ea0c Mon Sep 17 00:00:00 2001 From: "edward.zeng" Date: Tue, 26 Oct 2021 20:09:51 +0800 Subject: [PATCH] [skip ci] Fix typo in milvus meta snapshot design doc (#10657) Signed-off-by: Edward Zeng --- docs/design_docs/milvus_meta_snapshot_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/milvus_meta_snapshot_en.md b/docs/design_docs/milvus_meta_snapshot_en.md index 69bc7ac423..eb73319552 100644 --- a/docs/design_docs/milvus_meta_snapshot_en.md +++ b/docs/design_docs/milvus_meta_snapshot_en.md @@ -98,7 +98,7 @@ type SnapShotKV interface { For the `Read` operations (`Load` and `LoadWithPrefix`), the input parameter `typeutil.Timestamp` is used to tell `metaSnapShot` to load the value based on that `Timestamp`. -For the `Write` operations (`Save`, `MiltiSave`, `MultiSaveAndRemoveWithPrefix`), return values include `typeutil.Timestamp`, which is used to tell the caller when these write operations happened. +For the `Write` operations (`Save`, `MultiSave`, `MultiSaveAndRemoveWithPrefix`), return values include `typeutil.Timestamp`, which is used to tell the caller when these write operations happened. You might be curious about the parameter `additions` of `MultiSave` and `MultiSaveAndRemoveWithPrefix`: What does `additions` do, and why?