Remove extra # from url
This commit is contained in:
parent
5d3d3479d7
commit
9676e18868
8 changed files with 11 additions and 11 deletions
|
@ -6,7 +6,7 @@ LL | let headers = [Header{value: &[]}; 128];
|
|||
|
|
||||
= note: the `Copy` trait is required because this value will be copied for each element of the array
|
||||
= help: consider using `core::array::from_fn` to initialize the array
|
||||
= help: see https://doc.rust-lang.org/stable/std/array/fn.from_fn.html# for more information
|
||||
= help: see https://doc.rust-lang.org/stable/std/array/fn.from_fn.html for more information
|
||||
help: consider annotating `Header<'_>` with `#[derive(Copy)]`
|
||||
|
|
||||
LL + #[derive(Copy)]
|
||||
|
@ -21,7 +21,7 @@ LL | let headers = [Header{value: &[0]}; 128];
|
|||
|
|
||||
= note: the `Copy` trait is required because this value will be copied for each element of the array
|
||||
= help: consider using `core::array::from_fn` to initialize the array
|
||||
= help: see https://doc.rust-lang.org/stable/std/array/fn.from_fn.html# for more information
|
||||
= help: see https://doc.rust-lang.org/stable/std/array/fn.from_fn.html for more information
|
||||
help: consider annotating `Header<'_>` with `#[derive(Copy)]`
|
||||
|
|
||||
LL + #[derive(Copy)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue