@@ -4,7 +4,7 @@ The first step to using Rust is to install it! There are a number of ways to
44install Rust, but the easiest is to use the ` rustup ` script. If we're on Linux
55or a Mac, all we need to do is this:
66
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
88> each command. We’ll see many tutorials and examples around the web that
99> follow this convention: ` $ ` for commands run as our regular user, and ` # ` for
1010> commands we should be running as an administrator.
@@ -38,14 +38,14 @@ If you're on Windows, please download the appropriate [installer][install-page].
3838## Uninstalling
3939
4040If 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
4242uninstall script:
4343
4444``` bash
4545$ sudo /usr/local/lib/rustlib/uninstall.sh
4646```
4747
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
4949us an uninstall option.
5050
5151## That disclaimer we promised
@@ -103,7 +103,7 @@ platforms are required to have each of the following:
103103
104104* Automated building is set up, but may not be running tests.
105105* 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
107107 standard library is compiled, but for others the full bootstrap is run.
108108* Official release artifacts are provided for the platform.
109109
0 commit comments