diff options
| author | Jacob Kiesel <jake@bitcrafters.co> | 2024-07-27 12:27:49 -0600 |
|---|---|---|
| committer | Jacob Kiesel <jake@bitcrafters.co> | 2024-10-01 21:23:21 -0600 |
| commit | 6ff7a3e2aaa383062aef31f239a0b3939e544a86 (patch) | |
| tree | c3e2cc55646d80dd7c556df1112efd1209252aa6 /compiler/rustc_session/src | |
| parent | bb5a8276be2d3dbc97d0f52e90db15455d542edf (diff) | |
| download | rust-6ff7a3e2aaa383062aef31f239a0b3939e544a86.tar.gz rust-6ff7a3e2aaa383062aef31f239a0b3939e544a86.zip | |
Fix options help text
Diffstat (limited to 'compiler/rustc_session/src')
| -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 a1d85dfad32..c32cf3d015f 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1707,7 +1707,7 @@ options! { check_cfg_all_expected: bool = (false, parse_bool, [UNTRACKED], "show all expected values in check-cfg diagnostics (default: no)"), checksum_hash_algorithm: Option<SourceFileHashAlgorithm> = (None, parse_cargo_src_file_hash, [TRACKED], - "hash algorithm of source files used to check freshness in cargo (`sha256`)"), + "hash algorithm of source files used to check freshness in cargo (`blake3` or `sha256`)"), codegen_backend: Option<String> = (None, parse_opt_string, [TRACKED], "the backend to use"), combine_cgu: bool = (false, parse_bool, [TRACKED], |
