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 584164b commit d440a61Copy full SHA for d440a61
library/std/Cargo.toml
@@ -6,7 +6,7 @@ version = "0.0.0"
6
license = "MIT OR Apache-2.0"
7
repository = "https://github.com/rust-lang/rust.git"
8
description = "The Rust Standard Library"
9
-edition = "2021"
+edition = "2024"
10
autobenches = false
11
12
[lib]
library/std/src/keyword_docs.rs
@@ -1064,7 +1064,7 @@ mod move_keyword {}
1064
/// ```rust,compile_fail,E0502
1065
/// let mut v = vec![0, 1];
1066
/// let mut_ref_v = &mut v;
1067
-/// ##[allow(unused)]
+/// # #[allow(unused)]
1068
/// let ref_v = &v;
1069
/// mut_ref_v.push(2);
1070
/// ```
0 commit comments