From 64261078bfeff405d8184b90d5e201c23992db6f Mon Sep 17 00:00:00 2001 From: disksing Date: Thu, 24 Jan 2019 20:02:34 +0800 Subject: [PATCH] tikv: fix rawkv doc (#870) --- 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