]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/box_vec.stderr
Auto merge of #84620 - Dylan-DPC:rollup-wkv97im, r=Dylan-DPC
[rust.git] / src / tools / clippy / tests / ui / box_vec.stderr
index fca12eddd573f04c1721bf2143d235ad2e3a06aa..9b789334baeecb8db138d49f08db25a68509af78 100644 (file)
@@ -5,7 +5,7 @@ LL | pub fn test(foo: Box<Vec<bool>>) {
    |                  ^^^^^^^^^^^^^^
    |
    = note: `-D clippy::box-vec` implied by `-D warnings`
-   = help: `Vec<T>` is already on the heap, `Box<Vec<T>>` makes an extra allocation.
+   = help: `Vec<T>` is already on the heap, `Box<Vec<T>>` makes an extra allocation
 
 error: aborting due to previous error