From 4de14b28f637e776a71e6ada8646d018397ed556 Mon Sep 17 00:00:00 2001 From: Ekaterina Mekhnetsova Date: Tue, 7 Jun 2022 15:29:28 +0300 Subject: [PATCH] Fix formatting Signed-off-by: Ekaterina Mekhnetsova --- src/guide/bash.md | 2 +- src/guide/javascript.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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: | crypto-target-bundler | 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.