Skip to content

Commit

Permalink
tikv: fix rawkv doc (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
disksing authored and zhangjinpeng87 committed Jan 24, 2019
1 parent feb0742 commit 6426107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tikv/go-client-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To use the Raw Key-Value API in applications developed by golang, take the follo
func (c *RawKVClient) Delete(key []byte) error
func (c *RawKVClient) Get(key []byte) ([]byte, error)
func (c *RawKVClient) Put(key, value []byte) error
func (c *RawKVClient) Scan(startKey []byte, limit int) (keys [][]byte, values [][]byte, err error)
func (c *RawKVClient) Scan(startKey, endKey []byte, limit int) (keys [][]byte, values [][]byte, err error)
```

### Usage example of the Raw Key-Value API
Expand Down

0 comments on commit 6426107

Please sign in to comment.