From 9eec7dc4fec1b789b6c488d9420fc85c87f782bd Mon Sep 17 00:00:00 2001 From: groot Date: Tue, 14 Dec 2021 16:03:25 +0800 Subject: [PATCH] [skip ci] Add note for design doc (#13329) Signed-off-by: yhmo --- docs/design_docs/proxy.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/design_docs/proxy.md b/docs/design_docs/proxy.md index 63c379b16a..fdfb310ed1 100644 --- a/docs/design_docs/proxy.md +++ b/docs/design_docs/proxy.md @@ -396,17 +396,17 @@ type channelsMgr interface { - createDMLStream and getDMLStream - createDMLStream creates the dml message stream of collection; + createDMLStream creates the dml message stream of a collection; - getDMLStream returns the dml message stream of collection; + getDMLStream returns the dml message stream of a collection; Proxy uses these dml message stream to write dml data, such as insert request. - createDQLStream and getDQLStream - createDQLStream creates the dql message stream of collection; + createDQLStream creates the dql message stream of a collection; - getDQLStream returns the dql message stream of collection; + getDQLStream returns the dql message stream of a collection; Proxy uses these dql message stream to send search requests.