Skip to content

Commit 34a6fac

Browse files
committed
fix markdown
1 parent 87faea0 commit 34a6fac

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

debugging.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ $ RUST_BACKTRACE=1 \
8686
./build/x86_64-unknown-linux-gnu/stage1/bin/rustc \
8787
error.rs \
8888
-Z treat-err-as-bug
89-
```
9089
error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied
9190
--> error.rs:2:7
9291
|

feature-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The way we do that is that we make sure all new features are *feature gated* - t
7070

7171
Eventually, after we gain enough experience using the feature, make the necessary changes, and are satisfied, we expose it to the world using the stabilization process described [here](stabilization-guide.html). Until then, the feature is not set in stone: every part of the feature can be changed, or the feature might be completely rewritten or removed. Features are not supposed to gain tenure by being unstable and unchanged for a year.
7272

73-
[value the stability of the Rust language]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md
73+
[value the stability of Rust]: https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md
7474

7575
### Tracking Issues
7676

@@ -113,7 +113,7 @@ In order to implement a new unstable feature, you need to do the following steps
113113
114114
The current version is not actually important - the important version is when you are *stabilizing* a feature.
115115
4. Prevent usage of the new feature unless the feature gate is set.
116-
You can check it in most places in the compiler using the code
116+
You can check it in most places in the compiler using the expression
117117
```
118118
tcx.sess.features.borrow().$feature_name
119119
```

0 commit comments

Comments
 (0)