Skip to content

Commit 04b4bb9

Browse files
committed
remove backticks from titles
This doesn't actually display correctly
1 parent f13b276 commit 04b4bb9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/doc/trpl/SUMMARY.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@
77
* [Learn Rust](learn-rust.md)
88
* [Effective Rust](effective-rust.md)
99
* [The Stack and the Heap](the-stack-and-the-heap.md)
10-
* [`Debug` and `Display`](debug-and-display.md)
10+
* [Debug and Display](debug-and-display.md)
1111
* [Testing](testing.md)
1212
* [Documentation](documentation.md)
1313
* [Iterators](iterators.md)
1414
* [Concurrency](concurrency.md)
1515
* [Error Handling](error-handling.md)
1616
* [FFI](ffi.md)
17-
* [`Deref` coercions](deref-coercions.md)
17+
* [Deref coercions](deref-coercions.md)
1818
* [Syntax and Semantics](syntax-and-semantics.md)
1919
* [Variable Bindings](variable-bindings.md)
2020
* [Primitive Types](primitive-types.md)
2121
* [Functions](functions.md)
2222
* [Comments](comments.md)
23-
* [`if`](if.md)
24-
* [`for` loops](for-loops.md)
25-
* [`while` loops](while-loops.md)
23+
* [if](if.md)
24+
* [for loops](for-loops.md)
25+
* [while loops](while-loops.md)
2626
* [Ownership](ownership.md)
2727
* [References and Borrowing](references-and-borrowing.md)
2828
* [Lifetimes](lifetimes.md)

src/doc/trpl/debug-and-display.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
% `Debug` and `Display`
1+
% Debug and Display
22

33
Coming soon!

src/doc/trpl/for-loops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% `for` Loops
1+
% for Loops
22

33
The `for` loop is used to loop a particular number of times. Rust's `for` loops
44
work a bit differently than in other systems languages, however. Rust's `for`

src/doc/trpl/if.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% `if`
1+
% if
22

33
Rust's take on `if` is not particularly complex, but it's much more like the
44
`if` you'll find in a dynamically typed language than in a more traditional

src/doc/trpl/while-loops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% `while` loops
1+
% while loops
22

33
The other kind of looping construct in Rust is the `while` loop. It looks like
44
this:

0 commit comments

Comments
 (0)