Skip to content

Commit

Permalink
typo: fix incorrect spelling (#167)
Browse files Browse the repository at this point in the history
Signed-off-by: PennyYoon <[email protected]>
  • Loading branch information
Chenxulin97 authored Aug 18, 2024
1 parent e689ed3 commit 32645ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opengemini/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 32645ab

Please sign in to comment.