Rollup merge of #26788 - tshepang:not-exclamation-marks, r=steveklabnik

The sentences are also so short that they don't need periods at the end
This commit is contained in:
Steve Klabnik 2015-07-05 07:35:15 -04:00
commit a5f9162909

View File

@ -3344,8 +3344,8 @@ is often called unit or the unit type.
Rust has two different types for a list of items:
* `[T; N]`, an 'array'.
* `&[T]`, a 'slice'.
* `[T; N]`, an 'array'
* `&[T]`, a 'slice'
An array has a fixed size, and can be allocated on either the stack or the
heap.