diff --git a/tikv/go-client-api.md b/tikv/go-client-api.md index cd855f57a58f3..0dfb01b63512f 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