Skip to content

Commit ec258a3

Browse files
committed
Fix more links containing rust-2018
Signed-off-by: Maxime “pep” Buquet <[email protected]>
1 parent 7cd0614 commit ec258a3

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cargo and crates.io
22

3-
[check]: rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html
3+
[check]: cargo-and-crates-io/cargo-check-for-faster-checking.html
44

55
In this chapter of the guide, we discuss a few improvements to `cargo` and crates.io.
66
A notable addition here is the new [`cargo check`][check] command.

src/rust-2018/control-flow/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Control flow
22

3-
[async_await]: rust-2018/control-flow/async-await-for-easier-concurrency.html
3+
[async_await]: control-flow/async-await-for-easier-concurrency.html
44

55
In this chapter of the guide, we discuss a few improvements to control flow.
66
The most notable of these *will* be [`async` and `await`][async_await].

src/rust-2018/data-types/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Data types
22

3-
[fis]: rust-2018/data-types/field-init-shorthand.html
3+
[fis]: data-types/field-init-shorthand.html
44

55
In this chapter of the guide, we discuss a few improvements to data types.
66
One of these are [field-init-shorthand][fis].

src/rust-2018/documentation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Documentation
22

3-
[sec_ed]: rust-2018/documentation/new-editions-of-the-book.html
3+
[sec_ed]: documentation/new-editions-of-the-book.html
44

55
In this chapter of the guide, we discuss a few improvements to documentation.
66
A notable addition here is the [second edition of "the book"][sec_ed].
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Error handling and Panics
22

3-
[qop]: rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html
3+
[qop]: error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html
44

55
In this chapter of the guide, we discuss a few improvements to error handling
66
in Rust. The most notable of these is [the introduction of the `?` operator][qop].

src/rust-2018/macros/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Macros
22

3-
[custom-derive]: rust-2018/macros/custom-derive.html
3+
[custom-derive]: macros/custom-derive.html
44

55
In this chapter of the guide, we discuss a few improvements to the macro system.
66
A notable addition here is the introduction of [custom derive macros][custom-derive].

src/rust-2018/module-system/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Module system
22

3-
[path clarity changes]: rust-2018/module-system/path-clarity.html
3+
[path clarity changes]: module-system/path-clarity.html
44

55
In this chapter of the guide, we discuss a few changes to the module system.
66
The most notable of these are the [path clarity changes].

src/rust-2018/module-system/path-clarity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Finally, on nightly, you'll need it for crates like:
9393
#### Macros
9494

9595
One other use for `extern crate` was to import macros; that's no longer needed.
96-
Check [the macro section](rust-2018/macros/macro-changes.html) for more.
96+
Check [the macro section](macros/macro-changes.html) for more.
9797

9898
If you've been using `as` to rename your crate like this:
9999

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Ownership and lifetimes
22

3-
[dmbm]: rust-2018/ownership-and-lifetimes/default-match-bindings.html
3+
[dmbm]: ownership-and-lifetimes/default-match-bindings.html
44

55
In this chapter of the guide, we discuss a few improvements to ownership and lifetimes.
66
One of the most notable of these is [default match binding modes][dmbm].

src/rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ impl<T> Drop for SetOnDrop<'_, T> {
7272
}
7373
```
7474

75-
[the anonymous lifetime]: rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.html
75+
[the anonymous lifetime]: ownership-and-lifetimes/the-anonymous-lifetime.html

0 commit comments

Comments
 (0)