From: successli Date: Tue, 29 May 2018 07:59:04 +0000 (+0800) Subject: a little modify X-Git-Url: http://git.osdn.net/view?p=bytom%2Fbytom-java-sdk.git;a=commitdiff_plain;h=f4045be96abc76e54d5888757e47c738af50eceb a little modify --- diff --git a/doc/index.md b/doc/index.md index 9aecdc5..84e1905 100644 --- a/doc/index.md +++ b/doc/index.md @@ -129,34 +129,34 @@ Transaction.SubmitResponse txs = Transaction.submit(client, singer); #### 1.createKey - ```java - Key create(Client client, Builder builder); - ``` +```java +Key create(Client client, Builder builder); +``` - ##### Parameters +##### Parameters - - `Client` - *client*, Client object that makes requests to the core. - - `Key.Builder` - *builder*, Builder object that builds request parameters. +- `Client` - *client*, Client object that makes requests to the core. +- `Key.Builder` - *builder*, Builder object that builds request parameters. - ##### Returns +##### Returns - - `Key` - *key*, Key object. +- `Key` - *key*, Key object. ---- #### 2.listKeys - ```java - List list(Client client); - ``` +```java +List list(Client client); +``` - ##### Parameters +##### Parameters - - `Client` - *client*, Client object that makes requests to the core. +- `Client` - *client*, Client object that makes requests to the core. - ##### Returns +##### Returns - - `List of Key`, *List*, an ArrayList object contains Key objects. +- `List of Key`, *List*, an ArrayList object contains Key objects. ----