Auto merge of #34238 - jpreiss:master, r=steveklabnik

fix typo in primitive-types section on slices
This commit is contained in:
bors 2016-06-12 00:05:47 -07:00 committed by GitHub
commit 5b09f2a1a6
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ loop {
We now loop forever with `loop` and use `break` to break out early. Issuing an explicit `return` statement will also serve to terminate the loop early.
`continue` is similar, but instead of ending the loop, goes to the next
`continue` is similar, but instead of ending the loop, it goes to the next
iteration. This will only print the odd numbers:
```rust

View File

@ -163,7 +163,7 @@ A slice is a reference to (or “view” into) another data structure. The
useful for allowing safe, efficient access to a portion of an array without
copying. For example, you might want to reference only one line of a file read
into memory. By nature, a slice is not created directly, but from an existing
variable binding. Slices have a defined length, can be mutable or immutable.
variable binding. Slices have a defined length, and can be mutable or immutable.
Internally, slices are represented as a pointer to the beginning of the data
and a length.