Auto merge of #11701 - Alexendoo:vec-init-then-push-docs, r=Jarcho

Use multiple pushes in `vec_init_then_push` example

Makes the perf argument clearer, since a single push doesn't have unnecessary allocations compared to `vec![x]`

changelog: none
This commit is contained in:
bors 2023-10-30 17:25:55 +00:00
commit cdc4d56ae7

View file

@ -33,10 +33,12 @@ declare_clippy_lint! {
/// ```no_run
/// let mut v = Vec::new();
/// v.push(0);
/// v.push(1);
/// v.push(2);
/// ```
/// Use instead:
/// ```no_run
/// let v = vec![0];
/// let v = vec![0, 1, 2];
/// ```
#[clippy::version = "1.51.0"]
pub VEC_INIT_THEN_PUSH,