From 32645ab803f02e1dfe47890f37392adc51e2f0e0 Mon Sep 17 00:00:00 2001 From: PennyYoon <55304072+Chenxulin97@users.noreply.github.com> Date: Sun, 18 Aug 2024 22:36:59 +0800 Subject: [PATCH] typo: fix incorrect spelling (#167) Signed-off-by: PennyYoon <525296438@qq.com> --- opengemini/client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opengemini/client.go b/opengemini/client.go index bd23e81..c74ea1e 100644 --- a/opengemini/client.go +++ b/opengemini/client.go @@ -21,10 +21,10 @@ type Client interface { Query(query Query) (*QueryResult, error) // WritePoint write single point to assigned database. If you don't want to implement callbackFunc to receive error - // in writing, you cloud use opengemini.CallbackDummy. + // in writing, you could use opengemini.CallbackDummy. WritePoint(database string, point *Point, callbackFunc WriteCallback) error // WritePointWithRp write single point with retention policy. If you don't want to implement callbackFunc to - // receive error in writing, you cloud use opengemini.CallbackDummy. + // receive error in writing, you could use opengemini.CallbackDummy. WritePointWithRp(database string, rp string, point *Point, callbackFunc WriteCallback) error // WriteBatchPoints write batch points to assigned database WriteBatchPoints(ctx context.Context, database string, bp []*Point) error