@@ -230,7 +230,7 @@ impl<T> [T] {
230
230
core_slice:: SliceExt :: first_mut ( self )
231
231
}
232
232
233
- /// Returns the first and all the rest of the elements of a slice.
233
+ /// Returns the first and all the rest of the elements of a slice, or `None` if it is empty .
234
234
///
235
235
/// # Examples
236
236
///
@@ -248,7 +248,7 @@ impl<T> [T] {
248
248
core_slice:: SliceExt :: split_first ( self )
249
249
}
250
250
251
- /// Returns the first and all the rest of the elements of a slice.
251
+ /// Returns the first and all the rest of the elements of a slice, or `None` if it is empty .
252
252
///
253
253
/// # Examples
254
254
///
@@ -268,7 +268,7 @@ impl<T> [T] {
268
268
core_slice:: SliceExt :: split_first_mut ( self )
269
269
}
270
270
271
- /// Returns the last and all the rest of the elements of a slice.
271
+ /// Returns the last and all the rest of the elements of a slice, or `None` if it is empty .
272
272
///
273
273
/// # Examples
274
274
///
@@ -287,7 +287,7 @@ impl<T> [T] {
287
287
288
288
}
289
289
290
- /// Returns the last and all the rest of the elements of a slice.
290
+ /// Returns the last and all the rest of the elements of a slice, or `None` if it is empty .
291
291
///
292
292
/// # Examples
293
293
///
@@ -437,8 +437,8 @@ impl<T> [T] {
437
437
/// The caller must ensure that the slice outlives the pointer this
438
438
/// function returns, or else it will end up pointing to garbage.
439
439
///
440
- /// Modifying the slice may cause its buffer to be reallocated, which
441
- /// would also make any pointers to it invalid.
440
+ /// Modifying the container referenced by this slice may cause its buffer
441
+ /// to be reallocated, which would also make any pointers to it invalid.
442
442
///
443
443
/// # Examples
444
444
///
@@ -463,8 +463,8 @@ impl<T> [T] {
463
463
/// The caller must ensure that the slice outlives the pointer this
464
464
/// function returns, or else it will end up pointing to garbage.
465
465
///
466
- /// Modifying the slice may cause its buffer to be reallocated, which
467
- /// would also make any pointers to it invalid.
466
+ /// Modifying the container referenced by this slice may cause its buffer
467
+ /// to be reallocated, which would also make any pointers to it invalid.
468
468
///
469
469
/// # Examples
470
470
///
0 commit comments