Skip to content

Commit d5091c9

Browse files
committed
Fix up titles of TRPL chapters
1 parent f12e60a commit d5091c9

10 files changed

+10
-10
lines changed

src/doc/trpl/crates-and-modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Crates and Modules Guide
1+
% Crates and Modules
22

33
When a project starts getting large, it's considered a good software
44
engineering practice to split it up into a bunch of smaller pieces, and then

src/doc/trpl/error-handling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% Error Handling in Rust
1+
% Error Handling
22

33
> The best-laid plans of mice and men
44
> Often go awry

src/doc/trpl/ffi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Foreign Function Interface Guide
1+
% Foreign Function Interface
22

33
# Introduction
44

src/doc/trpl/macros.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Macros Guide
1+
% Macros
22

33
# Introduction
44

src/doc/trpl/ownership.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Ownership Guide
1+
% Ownership
22

33
This guide presents Rust's ownership system. This is one of Rust's most unique
44
and compelling features, with which Rust developers should become quite

src/doc/trpl/plugins.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Compiler Plugins Guide
1+
% Compiler Plugins
22

33
<div class="unstable-feature">
44

src/doc/trpl/pointers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Pointer Guide
1+
% Pointers
22

33
Rust's pointers are one of its more unique and compelling features. Pointers
44
are also one of the more confusing topics for newcomers to Rust. They can also

src/doc/trpl/testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% The Rust Testing Guide
1+
% Testing
22

33
> Program testing can be a very effective way to show the presence of bugs, but
44
> it is hopelessly inadequate for showing their absence.

src/doc/trpl/unsafe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% Writing Unsafe and Low-Level Code in Rust
1+
% Unsafe and Low-Level Code
22

33
# Introduction
44

src/doc/trpl/variable-bindings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% Variable bindings
1+
% Variable Bindings
22

33
The first thing we'll learn about are *variable bindings*. They look like this:
44

0 commit comments

Comments
 (0)