diff options
| author | binarycat <binarycat@envs.net> | 2025-01-14 09:51:55 -0600 |
|---|---|---|
| committer | binarycat <binarycat@envs.net> | 2025-01-14 09:51:55 -0600 |
| commit | f5e23d5c7b36d5c24e0133e0c2218810688e691c (patch) | |
| tree | 73ee97cb608f4742df634c3bb6a498b77d5537f9 | |
| parent | 244316f711175eb072959d5654454b9e51cf3251 (diff) | |
| download | rust-f5e23d5c7b36d5c24e0133e0c2218810688e691c.tar.gz rust-f5e23d5c7b36d5c24e0133e0c2218810688e691c.zip | |
fix typo and unit test
| -rw-r--r-- | src/librustdoc/lib.rs | 2 | ||||
| -rw-r--r-- | tests/run-make/rustdoc-default-output/output-default.stdout | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index e9b2bff089f..ba620b6cb6b 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -656,7 +656,7 @@ fn opts() -> Vec<RustcOptGroup> { FlagMulti, "", "disable-minification", - "diable the minification of CSS/JS files (perma-unstable, do not use with cached files)", + "disable the minification of CSS/JS files (perma-unstable, do not use with cached files)", "", ), // deprecated / removed options diff --git a/tests/run-make/rustdoc-default-output/output-default.stdout b/tests/run-make/rustdoc-default-output/output-default.stdout index adf7ee794fd..c1b246e849c 100644 --- a/tests/run-make/rustdoc-default-output/output-default.stdout +++ b/tests/run-make/rustdoc-default-output/output-default.stdout @@ -194,7 +194,8 @@ Options: --doctest-compilation-args add arguments to be used when compiling doctests --disable-minification - diable the minification of CSS/JS files + disable the minification of CSS/JS files + (perma-unstable, do not use with cached files) --plugin-path DIR removed, see issue #44136 <https://github.com/rust-lang/rust/issues/44136> for |
