Skip to content

Commit 46c824f

Browse files
committed
Merge pull request #489 from iliekturtles/spelling
Fix spelling mistakes
2 parents 72021d0 + 3b6f51a commit 46c824f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ info: downloading self-updates
107107
108108
```
109109

110-
This is the essense of `rustup`.
110+
This is the essence of `rustup`.
111111

112112
## Working with nightly Rust
113113

@@ -270,7 +270,7 @@ Note that `rustup target add` only installs the Rust standard library
270270
for a given target. There are typically other tools necessary to
271271
cross-compile, particularly a linker. For example, to cross compile
272272
to Android the [Android NDK] must be installed. In the future, `rustup`
273-
will provide assistence installing the NDK components as well.
273+
will provide assistance installing the NDK components as well.
274274

275275
[Android NDK]: https://developer.android.com/tools/sdk/ndk/index.html
276276

@@ -328,7 +328,7 @@ my-toolchain rustc`.
328328
Because the `rust-lang/rust` tree does not include Cargo, *when `cargo`
329329
is invoked for a custom toolchain and it is not available, `rustup`
330330
will attempt to use `cargo` from one of the release channels*,
331-
prefering 'nightly', then 'beta' or 'stable'.
331+
preferring 'nightly', then 'beta' or 'stable'.
332332

333333
## Examples
334334

@@ -354,7 +354,7 @@ Command | Description
354354

355355
- `RUSTUP_TOOLCHAIN` (default: none)
356356
If set, will override the toolchain used for all rust tool
357-
nvocations. A toolchain with this name should be installed, or
357+
invocations. A toolchain with this name should be installed, or
358358
invocations will fail.
359359

360360
- `RUSTUP_DIST_ROOT` (default: `https://static.rust-lang.org/dist`)
@@ -373,7 +373,7 @@ The primary installation method, as described at
373373
* On Windows, download and run the [rustup-init.exe for the
374374
`i686-pc-windows-gnu` target][setup]. Although this build of
375375
`rustup` installs compilers targeting the GNU ABI by default,
376-
compilers targetting the MSVC ABI can be installed with e.g. `rustup
376+
compilers targeting the MSVC ABI can be installed with e.g. `rustup
377377
install stable-msvc`.
378378
* On Unix, run `curl https://sh.rustup.rs -sSf | sh` in your
379379
shell. This downloads and runs the correct version of
@@ -419,7 +419,7 @@ the GNU build.
419419

420420
To install from source just run `cargo run --release`. Note that
421421
currently rustup only builds on nightly Rust, and that after
422-
installation the rustup toolchains will supercede any pre-existing
422+
installation the rustup toolchains will supersede any pre-existing
423423
toolchains by prepending `~/.cargo/bin` to the `PATH` environment
424424
variable.
425425

src/rustup-cli/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ may be any program, not just rustc or cargo.
160160
SubCommand::with_name("delete-data")
161161
.about("Delete all user metadata.")
162162
.after_help(
163-
r"Rremoves all installed toolchains, overrides, and aliases for the
163+
r"Removes all installed toolchains, overrides, and aliases for the
164164
current user.
165165
166166
Prompts for confirmation, unless disabled.

0 commit comments

Comments
 (0)