Skip to content

Commit d2acfb3

Browse files
y21djc
andauthored
Reword paragraph
Co-authored-by: Dirkjan Ochtman <[email protected]>
1 parent 830bac5 commit d2acfb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/slow_vector_initialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ declare_clippy_lint! {
2020
/// These structures are non-idiomatic and less efficient than simply using
2121
/// `vec![0; len]`.
2222
///
23-
/// More specifically, for `vec![0; len]`, the compiler can use a more specialized type of allocation
23+
/// Specifically, for `vec![0; len]`, the compiler can use a specialized type of allocation
2424
/// that also zero-initializes the allocated memory in the same call
2525
/// (see: [alloc_zeroed](https://doc.rust-lang.org/stable/std/alloc/trait.GlobalAlloc.html#method.alloc_zeroed)).
2626
///

0 commit comments

Comments
 (0)