Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
khaf committed Sep 6, 2021
1 parent 5e4a116 commit 44e5d9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion batch_read.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type BatchRead struct {

// Ops specifies the operations to perform for every key.
// Ops are mutually exclusive with BinNames.
// A binName can be emulated with GetOp(String)
// A binName can be emulated with `GetOp(binName)`
// Supported by server v5.6.0+.
Ops []*Operation
}
Expand Down
2 changes: 1 addition & 1 deletion cdt_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var _ = gg.Describe("CDT List Test", func() {
return
}

key, err = as.NewKey(ns, set, "randString(50)")
key, err = as.NewKey(ns, set, randString(50))
gm.Expect(err).ToNot(gm.HaveOccurred())

cdtBinName = randString(10)
Expand Down
2 changes: 1 addition & 1 deletion value.go
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ func tryConcreteValue(v interface{}) Value {
return nil
}

// OpResults encapsulates the results of read operations
// OpResults encapsulates the results of batch read operations
type OpResults []interface{}

// NewValue generates a new Value object based on the type.
Expand Down

0 comments on commit 44e5d9d

Please sign in to comment.