Skip to content

Commit de3ac3c

Browse files
committed
Remove memset alias from fill_with.
1 parent 84288ed commit de3ac3c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

library/core/src/slice/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3083,7 +3083,6 @@ impl<T> [T] {
30833083
/// buf.fill_with(Default::default);
30843084
/// assert_eq!(buf, vec![0; 10]);
30853085
/// ```
3086-
#[doc(alias = "memset")]
30873086
#[stable(feature = "slice_fill_with", since = "1.51.0")]
30883087
pub fn fill_with<F>(&mut self, mut f: F)
30893088
where

0 commit comments

Comments
 (0)