-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Anchor internal links to the root of the book & Update README.md
- Loading branch information
1 parent
9c48d95
commit 50cfb87
Showing
17 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Cargo and crates.io | ||
|
||
[check]: rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html | ||
[check]: /rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to `cargo` and crates.io. | ||
A notable addition here is the new [`cargo check`][check] command. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Control flow | ||
|
||
[async_await]: rust-2018/control-flow/async-await-for-easier-concurrency.html | ||
[async_await]: /rust-2018/control-flow/async-await-for-easier-concurrency.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to control flow. | ||
The most notable of these *will* be [`async` and `await`][async_await]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Data types | ||
|
||
[fis]: rust-2018/data-types/field-init-shorthand.html | ||
[fis]: /rust-2018/data-types/field-init-shorthand.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to data types. | ||
One of these are [field-init-shorthand][fis]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Documentation | ||
|
||
[sec_ed]: rust-2018/documentation/new-editions-of-the-book.html | ||
[sec_ed]: /rust-2018/documentation/new-editions-of-the-book.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to documentation. | ||
A notable addition here is the [second edition of "the book"][sec_ed]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Error handling and Panics | ||
|
||
[qop]: rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html | ||
[qop]: /rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to error handling | ||
in Rust. The most notable of these is [the introduction of the `?` operator][qop]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Macros | ||
|
||
[custom-derive]: rust-2018/macros/custom-derive.html | ||
[custom-derive]: /rust-2018/macros/custom-derive.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to the macro system. | ||
A notable addition here is the introduction of [custom derive macros][custom-derive]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Module system | ||
|
||
[path clarity changes]: rust-2018/module-system/path-clarity.html | ||
[path clarity changes]: /rust-2018/module-system/path-clarity.html | ||
|
||
In this chapter of the guide, we discuss a few changes to the module system. | ||
The most notable of these are the [path clarity changes]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Ownership and lifetimes | ||
|
||
[dmbm]: rust-2018/ownership-and-lifetimes/default-match-bindings.html | ||
[dmbm]: /rust-2018/ownership-and-lifetimes/default-match-bindings.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to ownership and lifetimes. | ||
One of the most notable of these is [default match binding modes][dmbm]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Platform and target support | ||
|
||
[libcore]: rust-2018/platform-and-target-support/libcore-for-low-level-rust.html | ||
[libcore]: /rust-2018/platform-and-target-support/libcore-for-low-level-rust.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to platform and target support. | ||
A notable addition to it was [that the `libcore` library now works on stable Rust][libcore]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# `rustdoc` | ||
|
||
[cf]: rust-2018/rustdoc/documentation-tests-can-now-compile-fail.html | ||
[cf]: /rust-2018/rustdoc/documentation-tests-can-now-compile-fail.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to `rustdoc`. | ||
A notable addition to it was [that documentation tests can now compile-fail][cf]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# The compiler | ||
|
||
[errors]: rust-2018/the-compiler/improved-error-messages.html | ||
[errors]: /rust-2018/the-compiler/improved-error-messages.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to the compiler. | ||
A notable addition here is our new and [improved error messages][errors]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Trait system | ||
|
||
[impl_trait]: rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html | ||
[impl_trait]: /rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.html | ||
|
||
In this chapter of the guide, we discuss a few improvements to the trait system. | ||
The most notable of these is [`impl Trait`][impl_trait]. |