@@ -214,17 +214,17 @@ mod prim_pointer { }
214
214
215
215
#[ doc( primitive = "array" ) ]
216
216
//
217
- /// A fixed-size array, denoted `[T; N]`, for the element type, `T`, and
218
- /// the non-negative compile time constant size, `N`.
217
+ /// A fixed-size array, denoted `[T; N]`, for the element type, `T`, and the
218
+ /// non-negative compile time constant size, `N`.
219
219
///
220
220
/// Arrays values are created either with an explicit expression that lists
221
221
/// each element: `[x, y, z]` or a repeat expression: `[x; N]`. The repeat
222
222
/// expression requires that the element type is `Copy`.
223
223
///
224
224
/// The type `[T; N]` is `Copy` if `T: Copy`.
225
225
///
226
- /// Arrays of sizes from 0 to 32 (inclusive) implement the following traits
227
- /// if the element type allows it:
226
+ /// Arrays of sizes from 0 to 32 (inclusive) implement the following traits if
227
+ /// the element type allows it:
228
228
///
229
229
/// - `Clone` (only if `T: Copy`)
230
230
/// - `Debug`
@@ -235,8 +235,8 @@ mod prim_pointer { }
235
235
/// - `Borrow`, `BorrowMut`
236
236
/// - `Default`
237
237
///
238
- /// Arrays dereference to [slices (`[T]`)][slice], so their methods can be called
239
- /// on arrays.
238
+ /// Arrays coerce to [slices (`[T]`)][slice], so their methods can be called on
239
+ /// arrays.
240
240
///
241
241
/// [slice]: primitive.slice.html
242
242
///
0 commit comments