Skip to content

Commit fb4b4b3

Browse files
author
zhoutongxi
committed
chore: Apply code review suggestions
1 parent 765cf3f commit fb4b4b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go-client/pegasus/table_connector.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ type TableConnector interface {
166166
// atomically in one operation.
167167
// DelRange is identical to DelRangeOpt except that the former uses DefaultDelRangeOptions as `options`.
168168
//
169-
// startSortKey: nil or len(startSortKey) == 0 means start from begin.
170-
// stopSortKey: nil or len(stopSortKey) == 0 means stop to end.
169+
// startSortKey: nil or len(startSortKey) == 0 means to start from the first entry in the sorted key range.
170+
// stopSortKey: nil or len(stopSortKey) == 0 means to stop at the last entry in the sorted key range.
171171
// `hashKey` : CAN'T be nil or empty.
172172
DelRange(ctx context.Context, hashKey []byte, startSortKey []byte, stopSortKey []byte) error
173173
DelRangeOpt(ctx context.Context, hashKey []byte, startSortKey []byte, stopSortKey []byte, options *DelRangeOptions) error

0 commit comments

Comments
 (0)