From 04b4bb9fb0cb4bfe004ea0eff4ab1a4a9349ec93 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 10 Apr 2015 11:35:19 -0400 Subject: [PATCH] remove backticks from titles This doesn't actually display correctly --- src/doc/trpl/SUMMARY.md | 10 +++++----- src/doc/trpl/debug-and-display.md | 2 +- src/doc/trpl/for-loops.md | 2 +- src/doc/trpl/if.md | 2 +- src/doc/trpl/while-loops.md | 2 +- 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: