Skip to content

Commit 915b85b

Browse files
committed
Update some book links to their new homes.
1 parent 9e656ea commit 915b85b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/c-tips/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ item, or pattern. Procedural macros are more complex but permit extremely
102102
powerful additions to the Rust language: they can transform arbitrary Rust
103103
syntax into new Rust syntax.
104104

105-
[macro system]: https://doc.rust-lang.org/book/second-edition/appendix-04-macros.html
105+
[macro system]: https://doc.rust-lang.org/book/ch19-06-macros.html
106106

107107
In general, where you might have used a C preprocessor macro, you probably want
108108
to see if a macro-by-example can do the job instead. They can be defined in
@@ -194,7 +194,7 @@ data processing code.
194194

195195
See the [Iterators in the Book] and [Iterator documentation] for more details.
196196

197-
[Iterators in the Book]: https://doc.rust-lang.org/book/second-edition/ch13-02-iterators.html
197+
[Iterators in the Book]: https://doc.rust-lang.org/book/ch13-02-iterators.html
198198
[Iterator documentation]: https://doc.rust-lang.org/core/iter/trait.Iterator.html
199199

200200
## References vs Pointers

src/intro/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Programming Language on "Bare Metal" embedded systems, such as Microcontrollers.
55

66
## Who Embedded Rust is For
77
Embedded Rust is for everyone who wants to do embedded programming while taking advantage of the higher-level concepts and safety guarantees the Rust language provides.
8-
(See also [Who Rust Is For](https://doc.rust-lang.org/book/2018-edition/ch00-00-introduction.html))
8+
(See also [Who Rust Is For](https://doc.rust-lang.org/book/ch00-00-introduction.html))
99

1010
## Scope
1111

@@ -41,7 +41,7 @@ you might want to catch up on.
4141
be familiar with the idioms of the [2018 edition] as this book targets
4242
Rust 2018.
4343

44-
[2018 edition]: https://rust-lang-nursery.github.io/edition-guide/
44+
[2018 edition]: https://doc.rust-lang.org/edition-guide/
4545

4646
* You are comfortable developing and debugging embedded systems in another
4747
language such as C, C++, or Ada, and are familiar with concepts such as:
@@ -55,7 +55,7 @@ If you are unfamiliar with anything mentioned above or if you want more informat
5555

5656
| Topic | Resource | Description |
5757
|--------------|----------|-------------|
58-
| Rust | [Rust Book 2018 Edition](https://doc.rust-lang.org/book/2018-edition/index.html) | If you are not yet comfortable with Rust, we highly suggest reading the this book. |
58+
| Rust | [Rust Book](https://doc.rust-lang.org/book/) | If you are not yet comfortable with Rust, we highly suggest reading the this book. |
5959
| Rust, Embedded | [Embedded Rust Bookshelf](https://docs.rust-embedded.org) | Here you can find several other resources provided by Rust's Embedded Working Group. |
6060
| Rust, Embedded | [Embedonomicon](https://docs.rust-embedded.org/embedonomicon/) | The nitty gritty details when doing embedded programming in Rust. |
6161
| Rust, Embedded | [embedded FAQ](https://docs.rust-embedded.org/faq.html) | Frequently asked questions about Rust in an embedded context. |

0 commit comments

Comments
 (0)