diff options
| author | Eric Huss <eric@huss.org> | 2023-01-09 12:36:39 -0800 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2023-01-09 14:20:34 -0800 |
| commit | d0c47bdcc9139f366e5bac0af33a9846b2d0e4f8 (patch) | |
| tree | 7eb9cf6adbc068e7d4bd75536bf49e582adeaec5 /compiler | |
| parent | af58fc869910eae0ec525d49cbb6d953ea10a8c6 (diff) | |
| download | rust-d0c47bdcc9139f366e5bac0af33a9846b2d0e4f8.tar.gz rust-d0c47bdcc9139f366e5bac0af33a9846b2d0e4f8.zip | |
Fix help docs for -Zallow-features
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 043a60a1c53..9c30de7312a 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1241,7 +1241,7 @@ options! { // tidy-alphabetical-start allow_features: Option<Vec<String>> = (None, parse_opt_comma_list, [TRACKED], - "only allow the listed language features to be enabled in code (space separated)"), + "only allow the listed language features to be enabled in code (comma separated)"), always_encode_mir: bool = (false, parse_bool, [TRACKED], "encode MIR of all functions into the crate metadata (default: no)"), asm_comments: bool = (false, parse_bool, [TRACKED], |
