diff --git a/src/doc/trpl/crates-and-modules.md b/src/doc/trpl/crates-and-modules.md index c12090e2a61..6c5c14fe311 100644 --- a/src/doc/trpl/crates-and-modules.md +++ b/src/doc/trpl/crates-and-modules.md @@ -1,4 +1,4 @@ -% The Rust Crates and Modules Guide +% Crates and Modules When a project starts getting large, it's considered a good software engineering practice to split it up into a bunch of smaller pieces, and then diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md index 4b1c92239ae..5754a93d097 100644 --- a/src/doc/trpl/error-handling.md +++ b/src/doc/trpl/error-handling.md @@ -1,4 +1,4 @@ -% Error Handling in Rust +% Error Handling > The best-laid plans of mice and men > Often go awry diff --git a/src/doc/trpl/ffi.md b/src/doc/trpl/ffi.md index ab112280a69..e1350a670b1 100644 --- a/src/doc/trpl/ffi.md +++ b/src/doc/trpl/ffi.md @@ -1,4 +1,4 @@ -% The Rust Foreign Function Interface Guide +% Foreign Function Interface # Introduction diff --git a/src/doc/trpl/macros.md b/src/doc/trpl/macros.md index 46a4af0d251..e0bccb1b86f 100644 --- a/src/doc/trpl/macros.md +++ b/src/doc/trpl/macros.md @@ -1,4 +1,4 @@ -% The Rust Macros Guide +% Macros # Introduction diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md index 6e125e218ea..b9db99d258e 100644 --- a/src/doc/trpl/ownership.md +++ b/src/doc/trpl/ownership.md @@ -1,4 +1,4 @@ -% The Rust Ownership Guide +% Ownership This guide presents Rust's ownership system. This is one of Rust's most unique and compelling features, with which Rust developers should become quite diff --git a/src/doc/trpl/plugins.md b/src/doc/trpl/plugins.md index d710c2fe4e7..6e8e2c7ffe2 100644 --- a/src/doc/trpl/plugins.md +++ b/src/doc/trpl/plugins.md @@ -1,4 +1,4 @@ -% The Rust Compiler Plugins Guide +% Compiler Plugins
diff --git a/src/doc/trpl/pointers.md b/src/doc/trpl/pointers.md index c918a80a86f..387bdac18ac 100644 --- a/src/doc/trpl/pointers.md +++ b/src/doc/trpl/pointers.md @@ -1,4 +1,4 @@ -% The Rust Pointer Guide +% Pointers Rust's pointers are one of its more unique and compelling features. Pointers are also one of the more confusing topics for newcomers to Rust. They can also diff --git a/src/doc/trpl/testing.md b/src/doc/trpl/testing.md index fa40b7e8490..1c93fd351b6 100644 --- a/src/doc/trpl/testing.md +++ b/src/doc/trpl/testing.md @@ -1,4 +1,4 @@ -% The Rust Testing Guide +% Testing > Program testing can be a very effective way to show the presence of bugs, but > it is hopelessly inadequate for showing their absence. diff --git a/src/doc/trpl/unsafe.md b/src/doc/trpl/unsafe.md index ae5df30ff56..406af336653 100644 --- a/src/doc/trpl/unsafe.md +++ b/src/doc/trpl/unsafe.md @@ -1,4 +1,4 @@ -% Writing Unsafe and Low-Level Code in Rust +% Unsafe and Low-Level Code # Introduction diff --git a/src/doc/trpl/variable-bindings.md b/src/doc/trpl/variable-bindings.md index e57fc7a1206..41c0e9de9b5 100644 --- a/src/doc/trpl/variable-bindings.md +++ b/src/doc/trpl/variable-bindings.md @@ -1,4 +1,4 @@ -% Variable bindings +% Variable Bindings The first thing we'll learn about are *variable bindings*. They look like this: