1
Fork 0

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 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 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 > The best-laid plans of mice and men
> Often go awry > Often go awry

View file

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

View file

@ -1,4 +1,4 @@
% The Rust Macros Guide % Macros
# Introduction # 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 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 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"> <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 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 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 > Program testing can be a very effective way to show the presence of bugs, but
> it is hopelessly inadequate for showing their absence. > 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 # 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: The first thing we'll learn about are *variable bindings*. They look like this: