Skip to content

Commit b513876

Browse files
outoftardisappetrosyan
authored andcommitted
Revert changes
Signed-off-by: Ekaterina Mekhnetsova <[email protected]>
1 parent f4f4ded commit b513876

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/guide/build-and-install.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
3131
curl --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 systems 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 dont go as planned. Especially if you had `rust` on your
51+
system a while ago, but didnt upgrade. A similar problem can occur in
5252
Python: 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

8787
If 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+
didnt work lets just say its a common problem, but it doesnt have a
8989
common solution.
9090

9191
Firstly, 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
112112
not set as the default. Run:
113113

114114
```bash
@@ -129,7 +129,7 @@ type cargo
129129
```
130130

131131
If 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 its not enough to
133133
just
134134

135135
```bash
@@ -140,14 +140,14 @@ alias cargo "~/.rustup/toolchains/stable-*/bin/cargo"
140140
because there is internal logic that could break regardless of how you
141141
re-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 dont 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
146146
versions of rustup installed and available to you. Usually, there are only
147147
two: the system package manager version and the one that got installed into
148148
the standard location in your home folder when you ran the command in the
149149
beginning of this tutorial. For the former, consult your (Linux)
150-
distribution's manual, (`apt remove rust`). For the latter, run:
150+
distributions manual, (`apt remove rust`). For the latter, run:
151151

152152
```bash
153153
rustup toolchain list
@@ -172,14 +172,14 @@ toolchain installed. Then, run:
172172
rustup 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 dont seem to have the right version,
176176
then 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 havent 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+
thats 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
285285
use `scripts/test_env.sh setup`, which will also start a set of Iroha
286286
peers. But that network is much harder to monitor, and unless you're
287287
well-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 dont 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`, its easier to work with,
291291
easier to set up, and easier to debug. We try to cater to all tastes, but
292292
some tastes have objective advantages.

0 commit comments

Comments
 (0)