summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2020-06-02 13:29:06 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-06-18 12:16:00 -0500
commit964260df25f0042e355e34c39fe6d3ae1caed45e (patch)
tree8c31bb0aba47e36037afe704a400b58428e0c414 /src/doc/rustc-dev-guide
parent3fce518c5f6e47c7cff1e6a30dd0246d8e4d8e1e (diff)
downloadrust-964260df25f0042e355e34c39fe6d3ae1caed45e.tar.gz
rust-964260df25f0042e355e34c39fe6d3ae1caed45e.zip
Typo fixes
Co-authored-by: Camelid <37223377+camelid@users.noreply.github.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/getting-started.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/rustc-dev-guide/src/getting-started.md b/src/doc/rustc-dev-guide/src/getting-started.md
index c8296446328..3c4a541a919 100644
--- a/src/doc/rustc-dev-guide/src/getting-started.md
+++ b/src/doc/rustc-dev-guide/src/getting-started.md
@@ -60,11 +60,11 @@ advice.**][suggested]
 ### System Requirements
 
 [**See this chapter for detailed software requirements.**](./building/prerequisites.md)
-Most notably, you will need python 2 to run `x.py`.
+Most notably, you will need Python 2 to run `x.py`.
 
 There are no hard hardware requirements, but building the compiler is
 computationally expensive, so a beefier machine will help, and I wouldn't
-recommend building try to build on a Raspberry Pi :P
+recommend trying to build on a Raspberry Pi :P
 
 - x86 and ARM are both supported (TODO: confirm)
 - Recommended 30GB of free disk space; otherwise, you will have to keep
@@ -75,7 +75,7 @@ recommend building try to build on a Raspberry Pi :P
   involves updating git submodules and downloading a beta compiler. It doesn't
   need to be super fast, but that can help.
 
-Building the compiler take more than half an hour on my moderately powerful
+Building the compiler takes more than half an hour on my moderately powerful
 laptop (even longer if you build LLVM).
 
 ### Cloning
@@ -120,7 +120,7 @@ the following settings:
 ### `./x.py` Intro
 
 `rustc` is a bootstrapping compiler because it is written in Rust. Where do you
-get do you get the original compiler from? We use the current `beta` compiler
+get the original compiler from? We use the current beta compiler
 to build the compiler. Then, we use that compiler to build itself. Thus,
 `rustc` has a 2-stage build.