Skip to content

Commit 98b18fa

Browse files
committed
Update Unstable Book links to reflect to new layout.
rust-lang/rust#41295
1 parent e8a9c6b commit 98b18fa

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

first-edition/src/unsafe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ I’ll repeat again: even though you _can_ do arbitrary things in unsafe blocks
139139
and functions doesn’t mean you should. The compiler will act as though you’re
140140
upholding its invariants, so be careful!
141141

142-
[intrinsics]: ../../unstable-book/intrinsics.html
142+
[intrinsics]: ../../unstable-book/language-features/intrinsics.html

first-edition/src/using-rust-without-the-standard-library.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ don’t want to use the standard library via an attribute: `#![no_std]`.
99
> Note: This feature is technically stable, but there are some caveats. For
1010
> one, you can build a `#![no_std]` _library_ on stable, but not a _binary_.
1111
> For details on binaries without the standard library, see [the nightly
12-
> chapter on 'lang items'](../../unstable-book/lang-items.html#using-libc)
12+
> chapter on 'lang items'][unstable book lang items]
1313
1414
To use `#![no_std]`, add it to your crate root:
1515

@@ -40,3 +40,5 @@ fn may_fail(failure: bool) -> Result<(), &'static str> {
4040
}
4141
}
4242
```
43+
44+
[unstable book lang items]: ../../unstable-book/language-features/lang-items.html#using-libc

redirects/compiler-plugins.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
% The Rust Programming Language Has Moved
22

33
This chapter of the book has moved to [a chapter in the Unstable
4-
Book](../unstable-book/plugin.html). Please check it out there.
4+
Book][unstable book plugins]. Please check it out there.
5+
6+
[unstable book plugins]: ../unstable-book/language-features/plugin.html

0 commit comments

Comments
 (0)