Rollup merge of #25418 - leunggamciu:patch-trpl, r=steveklabnik

This commit is contained in:
Steve Klabnik 2015-05-14 20:30:43 -04:00
commit 5501f076c2

View File

@ -73,6 +73,9 @@ a name is all we need. We choose the [`String`][string] type for the name,
rather than `&str`. Generally speaking, working with a type which owns its
data is easier than working with one that uses references.
[struct]: structs.html
[string]: strings.html
Lets continue:
```rust