Skip to content

Commit 3eb4eae

Browse files
committed
Fixes #59361
1 parent f166314 commit 3eb4eae

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/librustc/session/config.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1706,6 +1706,12 @@ pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> {
17061706
"Specify the name of the crate being built",
17071707
"NAME",
17081708
),
1709+
opt::opt_s(
1710+
"",
1711+
"edition",
1712+
"Specify which edition of the compiler to use when compiling code.",
1713+
EDITION_NAME_LIST,
1714+
),
17091715
opt::multi_s(
17101716
"",
17111717
"emit",
@@ -1808,12 +1814,6 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
18081814
`expanded,identified` (fully parenthesized, AST nodes with IDs).",
18091815
"TYPE",
18101816
),
1811-
opt::opt_s(
1812-
"",
1813-
"edition",
1814-
"Specify which edition of the compiler to use when compiling code.",
1815-
EDITION_NAME_LIST,
1816-
),
18171817
opt::multi_s(
18181818
"",
18191819
"remap-path-prefix",

0 commit comments

Comments
 (0)