From 3ecfd5ca518364ba0c5fb4ed92d5ae16245f6171 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 6 Sep 2020 15:14:29 -0400 Subject: [PATCH 1/2] Move sections about contributing closer together --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a7e23d8ac2c..4f3be052eba 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ standard library, and documentation. [Rust]: https://www.rust-lang.org **Note: this README is for _users_ rather than _contributors_.** +**Note: If you wish to _contribute_ to the compiler, you should read the +[Getting Started][gettingstarted] of the rustc-dev-guide instead of this +section.** ## Quick Start @@ -18,10 +21,6 @@ Read ["Installation"] from [The Book]. ## Installing from Source -**Note: If you wish to _contribute_ to the compiler, you should read the -[Getting Started][gettingstarted] of the rustc-dev-guide instead of this -section.** - The Rust build system uses a Python script called `x.py` to build the compiler, which manages the bootstrapping process. More information about it can be found by running `./x.py --help` or reading the [rustc dev guide][rustcguidebuild]. From aee0ef13dd13b84dd270f7729fae5e9918ee309c Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Sun, 6 Sep 2020 15:18:45 -0400 Subject: [PATCH 2/2] Remove duplicate 'note:' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4f3be052eba..19d10810a76 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ standard library, and documentation. [Rust]: https://www.rust-lang.org -**Note: this README is for _users_ rather than _contributors_.** -**Note: If you wish to _contribute_ to the compiler, you should read the +**Note: this README is for _users_ rather than _contributors_. +If you wish to _contribute_ to the compiler, you should read the [Getting Started][gettingstarted] of the rustc-dev-guide instead of this section.**