We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 830bac5 commit d2acfb3Copy full SHA for d2acfb3
clippy_lints/src/slow_vector_initialization.rs
@@ -20,7 +20,7 @@ declare_clippy_lint! {
20
/// These structures are non-idiomatic and less efficient than simply using
21
/// `vec![0; len]`.
22
///
23
- /// More specifically, for `vec![0; len]`, the compiler can use a more specialized type of allocation
+ /// Specifically, for `vec![0; len]`, the compiler can use a specialized type of allocation
24
/// that also zero-initializes the allocated memory in the same call
25
/// (see: [alloc_zeroed](https://doc.rust-lang.org/stable/std/alloc/trait.GlobalAlloc.html#method.alloc_zeroed)).
26
0 commit comments