a couple more small changes

This commit is contained in:
mark 2020-06-02 14:57:37 -05:00 committed by Who? Me?!
parent 96a7a9a49c
commit 6e482fb047
2 changed files with 3 additions and 2 deletions

View File

@ -5,8 +5,8 @@
---
- [Part 1: Building, debugging, and contributing to Rustc](./part-1-intro.md)
- [About the compiler team](./compiler-team.md)
- [Getting Started](./getting-started.md)
- [About the compiler team](./compiler-team.md)
- [How to Build and Run the Compiler](./building/how-to-build-and-run.md)
- [Suggested Workflows](./building/suggested.md)
- [Bootstrapping](./building/bootstrapping.md)

View File

@ -272,7 +272,8 @@ After that, the feature gate can be removed and the feature turned on for all us
As mentioned above, Rust has strong backwards-compatibility guarantees. To this
end, we are reluctant to make breaking changes. However, sometimes they are
needed to correct compiler bugs (e.g. code that compiled but should not).
needed to correct compiler bugs (e.g. code that compiled but should not) or
make progress on some features.
Depending on the scale of the breakage, there are a few different actions that
can be taken. If the reviewer believes the breakage is very minimal (i.e. very