@@ -4,7 +4,7 @@ The first step to using Rust is to install it! There are a number of ways to
4
4
install Rust, but the easiest is to use the ` rustup ` script. If we're on Linux
5
5
or a Mac, all we need to do is this:
6
6
7
- > Note: we don't need to type in the ` $ ` s, they just indicate the start of
7
+ > Note: we don't need to type in the ` $ ` s, they are there to indicate the start of
8
8
> each command. We’ll see many tutorials and examples around the web that
9
9
> follow this convention: ` $ ` for commands run as our regular user, and ` # ` for
10
10
> commands we should be running as an administrator.
@@ -38,14 +38,14 @@ If you're on Windows, please download the appropriate [installer][install-page].
38
38
## Uninstalling
39
39
40
40
If you decide you don't want Rust anymore, we'll be a bit sad, but that's okay.
41
- Not every programming language is great for everyone. We'll just run the
41
+ Not every programming language is great for everyone. We can run the
42
42
uninstall script:
43
43
44
44
``` bash
45
45
$ sudo /usr/local/lib/rustlib/uninstall.sh
46
46
```
47
47
48
- If we used the Windows installer, we'll just re-run the ` .msi ` and it will give
48
+ If we used the Windows installer, we can re-run the ` .msi ` and it will give
49
49
us an uninstall option.
50
50
51
51
## That disclaimer we promised
@@ -103,7 +103,7 @@ platforms are required to have each of the following:
103
103
104
104
* Automated building is set up, but may not be running tests.
105
105
* Landing changes to the ` rust-lang/rust ` repository's master branch is gated on
106
- platforms ** building** . Note that this means for some platforms just the
106
+ platforms ** building** . Note that this means for some platforms only the
107
107
standard library is compiled, but for others the full bootstrap is run.
108
108
* Official release artifacts are provided for the platform.
109
109
0 commit comments