From fcbba67a81e4b2b48429fc1f84d294fc37a552fe Mon Sep 17 00:00:00 2001 From: disksing Date: Thu, 24 Jan 2019 16:07:41 +0800 Subject: [PATCH] tikv: fix rawkv doc Signed-off-by: disksing --- tikv/go-client-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tikv/go-client-api.md b/tikv/go-client-api.md index cd855f57a58f..0dfb01b63512 100644 --- a/tikv/go-client-api.md +++ b/tikv/go-client-api.md @@ -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