@@ -16,7 +16,7 @@ For this tutorial, you will need:
1616 [ troubleshooting] ( #troubleshooting-rust-toolchain ) section.
1717
1818[ ^ 2 ] :
19- We highly recommend using Docker because it's oftentimes easier to use
19+ We highly recommend using Docker because it is oftentimes easier to use
2020 and debug.
2121
2222## Install the Rust Toolchain
@@ -31,7 +31,7 @@ The easiest way to get the official `rustup` script is to run:
3131curl --proto ' =https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
3232```
3333
34- Or, alternatively, you can install ` rustup ` via your operating system' s package manager.
34+ Or, alternatively, you can install ` rustup ` via your operating system’ s package manager.
3535
3636::: tip
3737
@@ -47,8 +47,8 @@ setup process. Just go with the defaults.
4747
4848::: details Click to expand
4949
50- Sometimes, things don' t go as planned. Especially if you had ` rust ` on your
51- system a while ago, but didn' t upgrade. A similar problem can occur in
50+ Sometimes, things don’ t go as planned. Especially if you had ` rust ` on your
51+ system a while ago, but didn’ t upgrade. A similar problem can occur in
5252Python: XKCD has a famous example of what that might look like:
5353
5454<div class =" flex justify-center " >
@@ -85,7 +85,7 @@ rustup toolchain update stable
8585---
8686
8787If you get lower version numbers ** and** you updated the toolchain and it
88- didn' t work... let' s just say it' s a common problem, but it doesn' t have a
88+ didn’ t work… let’ s just say it’ s a common problem, but it doesn’ t have a
8989common solution.
9090
9191Firstly, you should establish where the version that you want to use is
@@ -108,7 +108,7 @@ and that should fix your problems.
108108
109109---
110110
111- Another option is that you have the up-to-date ` stable ` toolchain, but it's
111+ Another option is that you have the up-to-date ` stable ` toolchain, but it is
112112not set as the default. Run:
113113
114114``` bash
@@ -129,7 +129,7 @@ type cargo
129129```
130130
131131If these point to locations other than the one you saw when running
132- ` rustup which * ` , then you have a problem. Note that it' s not enough to
132+ ` rustup which * ` , then you have a problem. Note that it’ s not enough to
133133just
134134
135135``` bash
@@ -140,14 +140,14 @@ alias cargo "~/.rustup/toolchains/stable-*/bin/cargo"
140140because there is internal logic that could break regardless of how you
141141re-arrange your shell aliases.
142142
143- The simplest solution would be to remove the versions that you don' t use.
143+ The simplest solution would be to remove the versions that you don’ t use.
144144
145- It's Easier _ said_ than _ done_ , however, since it entails tracking all the
145+ It’s easier _ said_ than _ done_ , however, since it entails tracking all the
146146versions of rustup installed and available to you. Usually, there are only
147147two: the system package manager version and the one that got installed into
148148the standard location in your home folder when you ran the command in the
149149beginning of this tutorial. For the former, consult your (Linux)
150- distribution' s manual, (` apt remove rust ` ). For the latter, run:
150+ distribution’ s manual, (` apt remove rust ` ). For the latter, run:
151151
152152``` bash
153153rustup toolchain list
@@ -172,14 +172,14 @@ toolchain installed. Then, run:
172172rustup toolchain install stable
173173```
174174
175- If after all of this work, you still don' t seem to have the right version,
175+ If after all of this work, you still don’ t seem to have the right version,
176176then the issue runs deeper.
177177
178178:::
179179
180180## Install Iroha from GitHub
181181
182- 1 . If you haven' t already, you might want to create a clean folder for
182+ 1 . If you haven’ t already, you might want to create a clean folder for
183183 Iroha 2, to keep things tidy.
184184
185185 ``` bash
@@ -190,7 +190,7 @@ then the issue runs deeper.
190190
191191 On macOS, if you get
192192 ` fatal: could not create work tree dir ' iroha' : Read-only file system` ,
193- that' s because the home folder is not a real file system. The fix is to
193+ that’ s because the home folder is not a real file system. The fix is to
194194 create the ` Git` folder.
195195
196196 :::
@@ -285,8 +285,8 @@ As we said, you can also try and use the bare metal script. For testing we
285285use ` scripts/test_env.sh setup` , which will also start a set of Iroha
286286peers. But that network is much harder to monitor, and unless you' re
287287well-versed in `killall` and reading log files with a proper text editor,
288- we recommend that you don' t go this route.
288+ we recommend that you don’ t go this route.
289289
290- Unless you have an absolute aversion to `docker`, it' s easier to work with,
290+ Unless you have an absolute aversion to `docker`, it’ s easier to work with,
291291easier to set up, and easier to debug. We try to cater to all tastes, but
292292some tastes have objective advantages.
0 commit comments