diff --git a/src/guide/bash.md b/src/guide/bash.md index c150ecefa..c21c5b441 100644 --- a/src/guide/bash.md +++ b/src/guide/bash.md @@ -256,7 +256,7 @@ To see all the accounts on the network, run: ``` This will list the active accounts on the network, along with their assets. -Like this: +It will look like this: ```rust Account { diff --git a/src/guide/javascript.md b/src/guide/javascript.md index 7dc5faa3c..cb7b48e82 100644 --- a/src/guide/javascript.md +++ b/src/guide/javascript.md @@ -20,8 +20,8 @@ The Iroha 2 JavaScript library consists of multiple packages: | <code class="whitespace-pre">crypto-target-bundler</code> | Provides compiled crypto WASM to use with bundlers such as Webpack | All of these are published under the `@iroha2` scope into Iroha Nexus -Registry. In the future, they will be published in the main NPM Registry. To -install these packages, you first need to set up a registry: +Registry. In the future, they will be published in the main NPM Registry. +To install these packages, you first need to set up a registry: ```ini # FILE: .npmrc @@ -39,8 +39,8 @@ pnpm add @iroha2/crypto-target-web The set of packages that you need to install depends on your intention. Maybe you only need to play with the Data Model to perform (de-)serialisation, in which case the `data-model` package is enough. If -you only need to check on a peer in terms of its status or health, you just need -the client library, because this API doesn't require any interactions +you only need to check on a peer in terms of its status or health, you just +need the client library, because this API doesn't require any interactions with crypto or Data Model. For the purposes of this tutorial, it's better to install everything.