Rollup merge of #25410 - durka:patch-2, r=steveklabnik

This commit is contained in:
Steve Klabnik 2015-05-14 20:30:42 -04:00
commit dd60abc697
3 changed files with 4 additions and 1 deletions

View File

@ -66,3 +66,4 @@ equality yet, but well find out in the [`traits`][traits] section.
[match]: match.html
[if-let]: if-let.html
[traits]: traits.html

View File

@ -97,4 +97,4 @@ Unlike the previous uses of `match`, you cant use the normal `if`
statement to do this. You can use the [`if let`][if-let] statement,
which can be seen as an abbreviated form of `match`.
[if-let][if-let.html]
[if-let]: if-let.html

View File

@ -196,3 +196,5 @@ useful. For instance, a library may ask you to create a structure that
implements a certain [trait][trait] to handle events. If you dont have
any data you need to store in the structure, you can just create a
unit-like struct.
[trait]: traits.html