We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f166314 commit 3eb4eaeCopy full SHA for 3eb4eae
src/librustc/session/config.rs
@@ -1706,6 +1706,12 @@ pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> {
1706
"Specify the name of the crate being built",
1707
"NAME",
1708
),
1709
+ opt::opt_s(
1710
+ "",
1711
+ "edition",
1712
+ "Specify which edition of the compiler to use when compiling code.",
1713
+ EDITION_NAME_LIST,
1714
+ ),
1715
opt::multi_s(
1716
"",
1717
"emit",
@@ -1808,12 +1814,6 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
1808
1814
`expanded,identified` (fully parenthesized, AST nodes with IDs).",
1809
1815
"TYPE",
1810
1816
1811
- opt::opt_s(
1812
- "",
1813
- "edition",
- "Specify which edition of the compiler to use when compiling code.",
- EDITION_NAME_LIST,
- ),
1817
1818
1819
"remap-path-prefix",
0 commit comments