]> git.lizzy.rs Git - rust.git/commitdiff
Fix up titles of TRPL chapters
authorSteve Klabnik <steve@steveklabnik.com>
Fri, 16 Jan 2015 20:30:27 +0000 (15:30 -0500)
committerSteve Klabnik <steve@steveklabnik.com>
Sat, 17 Jan 2015 15:51:07 +0000 (10:51 -0500)
src/doc/trpl/crates-and-modules.md
src/doc/trpl/error-handling.md
src/doc/trpl/ffi.md
src/doc/trpl/macros.md
src/doc/trpl/ownership.md
src/doc/trpl/plugins.md
src/doc/trpl/pointers.md
src/doc/trpl/testing.md
src/doc/trpl/unsafe.md
src/doc/trpl/variable-bindings.md

index c12090e2a614cee32f71c9c4a7f3e6c47edb1abf..6c5c14fe3111db5c0827e692cd80a5494266ba9e 100644 (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
index 4b1c92239aed348f633b8837f571b4a6da5565a1..5754a93d09783cd08ffa22a65c4a4861289e01d8 100644 (file)
@@ -1,4 +1,4 @@
-% Error Handling in Rust
+% Error Handling
 
 > The best-laid plans of mice and men  
 > Often go awry
index ab112280a69a5c6d6291e7f747599612fed2b3ea..e1350a670b1c6a730f3d2dfcb93ddcee91f37f3c 100644 (file)
@@ -1,4 +1,4 @@
-% The Rust Foreign Function Interface Guide
+% Foreign Function Interface
 
 # Introduction
 
index 46a4af0d25135baaa9aa01f6a09239809be5dfd8..e0bccb1b86f329679ea59d8d4ad0735d530987f0 100644 (file)
@@ -1,4 +1,4 @@
-% The Rust Macros Guide
+% Macros
 
 # Introduction
 
index 6e125e218eaacf1d60e9b4c22ad1929cba389f93..b9db99d258ef25a89f5a9c63fc437c4316bca4dd 100644 (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
index d710c2fe4e7566c0c6bd25f0433540b98330916a..6e8e2c7ffe292d430364c35f58ac29fb7bc71365 100644 (file)
@@ -1,4 +1,4 @@
-% The Rust Compiler Plugins Guide
+% Compiler Plugins
 
 <div class="unstable-feature">
 
index c918a80a86f0158f9a8c76a1d09a68f66a684e39..387bdac18ac05f10009ac8ef8f1d5a029112d576 100644 (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
index fa40b7e84908eada2622869770e8d1d3cba64768..1c93fd351b6e4c8483be675e4c2e3d7df73803c9 100644 (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. 
index ae5df30ff5612adc4e550f67366b2a1dbe2d96af..406af336653dd7d7dd27cda4a04665106be0a6fc 100644 (file)
@@ -1,4 +1,4 @@
-% Writing Unsafe and Low-Level Code in Rust
+% Unsafe and Low-Level Code
 
 # Introduction
 
index e57fc7a120653aa29507b477b04eabefd34c895b..41c0e9de9b5056092058f7b7ffcfa9096f19d2ed 100644 (file)
@@ -1,4 +1,4 @@
-% Variable bindings
+% Variable Bindings
 
 The first thing we'll learn about are *variable bindings*. They look like this: