Fix up titles of TRPL chapters

This commit is contained in:
Steve Klabnik 2015-01-16 15:30:27 -05:00
parent f12e60a5c8
commit d5091c9cc9
10 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -1,4 +1,4 @@
% Error Handling in Rust
% Error Handling
> The best-laid plans of mice and men
> Often go awry

View File

@ -1,4 +1,4 @@
% The Rust Foreign Function Interface Guide
% Foreign Function Interface
# Introduction

View File

@ -1,4 +1,4 @@
% The Rust Macros Guide
% Macros
# Introduction

View File

@ -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

View File

@ -1,4 +1,4 @@
% The Rust Compiler Plugins Guide
% Compiler Plugins
<div class="unstable-feature">

View File

@ -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

View File

@ -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.

View File

@ -1,4 +1,4 @@
% Writing Unsafe and Low-Level Code in Rust
% Unsafe and Low-Level Code
# Introduction

View File

@ -1,4 +1,4 @@
% Variable bindings
% Variable Bindings
The first thing we'll learn about are *variable bindings*. They look like this: