From b7783a8a26c47fdb1f7d179a21bbb97813bb6574 Mon Sep 17 00:00:00 2001 From: svaishnavy Date: Wed, 18 Jul 2018 21:20:38 +0200 Subject: [PATCH] Making suggested changes --- docs/sdk/cosmos-sdk-cli.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/sdk/cosmos-sdk-cli.md b/docs/sdk/cosmos-sdk-cli.md index 2a418534db..2cc0182cf5 100644 --- a/docs/sdk/cosmos-sdk-cli.md +++ b/docs/sdk/cosmos-sdk-cli.md @@ -6,9 +6,9 @@ Create a new blockchain project based on cosmos-sdk with a single command. # Installation ```shell -$go get github.com/cosmos/cosmos-sdk -$cd $GOPATH/src/github.com/cosmos/cosmos-sdk -$make install_cosmos-sdk-cli +$ go get github.com/cosmos/cosmos-sdk +$ cd $GOPATH/src/github.com/cosmos/cosmos-sdk +$ make install_cosmos-sdk-cli ``` This will install a binary cosmos-sdk-cli @@ -21,14 +21,14 @@ This will initialize a project, the dependencies, directory structures with the ### Example: ```shell -$cosmos-sdk-cli init testzone -p github.com/your_user_name/testzone +$ cosmos-sdk-cli init testzone -p github.com/your_user_name/testzone ``` --p remote project path (optional). If this is not provided, it creates testzone under $GOPATH/src/ +```-p [remote-project-path]```. If this is not provided, it creates testzone under $GOPATH/src/ ```shell -$cd $GOPATH/src/github.com/your_user_name/testzone -$make +$ cd $GOPATH/src/github.com/your_user_name/testzone +$ make ``` This will create two binaries(testzonecli and testzoned) under bin folder. testzoned is the full node of the application which you can run, and testzonecli is your light client.