about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-04-10 11:35:19 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-04-10 12:26:58 -0400
commit04b4bb9fb0cb4bfe004ea0eff4ab1a4a9349ec93 (patch)
tree18e9c20f46004c5c55a7e21e4a81b33cfdca670a
parentf13b276d849c6e57ac48d23cb4d2f378e006c0b9 (diff)
downloadrust-04b4bb9fb0cb4bfe004ea0eff4ab1a4a9349ec93.tar.gz
rust-04b4bb9fb0cb4bfe004ea0eff4ab1a4a9349ec93.zip
remove backticks from titles
This doesn't actually display correctly
-rw-r--r--src/doc/trpl/SUMMARY.md10
-rw-r--r--src/doc/trpl/debug-and-display.md2
-rw-r--r--src/doc/trpl/for-loops.md2
-rw-r--r--src/doc/trpl/if.md2
-rw-r--r--src/doc/trpl/while-loops.md2
5 files changed, 9 insertions, 9 deletions
diff --git a/src/doc/trpl/SUMMARY.md b/src/doc/trpl/SUMMARY.md
index 881d41f5222..e4c2ffac51a 100644
--- a/src/doc/trpl/SUMMARY.md
+++ b/src/doc/trpl/SUMMARY.md
@@ -7,22 +7,22 @@
 * [Learn Rust](learn-rust.md)
 * [Effective Rust](effective-rust.md)
     * [The Stack and the Heap](the-stack-and-the-heap.md)
-    * [`Debug` and `Display`](debug-and-display.md)
+    * [Debug and Display](debug-and-display.md)
     * [Testing](testing.md)
     * [Documentation](documentation.md)
     * [Iterators](iterators.md)
     * [Concurrency](concurrency.md)
     * [Error Handling](error-handling.md)
     * [FFI](ffi.md)
-    * [`Deref` coercions](deref-coercions.md)
+    * [Deref coercions](deref-coercions.md)
 * [Syntax and Semantics](syntax-and-semantics.md)
     * [Variable Bindings](variable-bindings.md)
     * [Primitive Types](primitive-types.md)
     * [Functions](functions.md)
     * [Comments](comments.md)
-    * [`if`](if.md)
-    * [`for` loops](for-loops.md)
-    * [`while` loops](while-loops.md)
+    * [if](if.md)
+    * [for loops](for-loops.md)
+    * [while loops](while-loops.md)
     * [Ownership](ownership.md)
     * [References and Borrowing](references-and-borrowing.md)
     * [Lifetimes](lifetimes.md)
diff --git a/src/doc/trpl/debug-and-display.md b/src/doc/trpl/debug-and-display.md
index 6c8d788b5ae..918f4c440ac 100644
--- a/src/doc/trpl/debug-and-display.md
+++ b/src/doc/trpl/debug-and-display.md
@@ -1,3 +1,3 @@
-% `Debug` and `Display`
+% Debug and Display
 
 Coming soon!
diff --git a/src/doc/trpl/for-loops.md b/src/doc/trpl/for-loops.md
index 45ae5a2e2dd..ad68e70f41f 100644
--- a/src/doc/trpl/for-loops.md
+++ b/src/doc/trpl/for-loops.md
@@ -1,4 +1,4 @@
-% `for` Loops
+% for Loops
 
 The `for` loop is used to loop a particular number of times. Rust's `for` loops
 work a bit differently than in other systems languages, however. Rust's `for`
diff --git a/src/doc/trpl/if.md b/src/doc/trpl/if.md
index 92f95341f81..4b0058e78df 100644
--- a/src/doc/trpl/if.md
+++ b/src/doc/trpl/if.md
@@ -1,4 +1,4 @@
-% `if`
+% if
 
 Rust's take on `if` is not particularly complex, but it's much more like the
 `if` you'll find in a dynamically typed language than in a more traditional
diff --git a/src/doc/trpl/while-loops.md b/src/doc/trpl/while-loops.md
index 508c4ee117a..e1fe9b589b3 100644
--- a/src/doc/trpl/while-loops.md
+++ b/src/doc/trpl/while-loops.md
@@ -1,4 +1,4 @@
-% `while` loops
+% while loops
 
 The other kind of looping construct in Rust is the `while` loop. It looks like
 this: