Skip to content

Commit 026faca

Browse files
committed
Fix two typos
1 parent 4deb072 commit 026faca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_metadata/src/rmeta/decoder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ impl MetadataBlob {
909909
_ => {
910910
writeln!(
911911
out,
912-
"unknown -Zls kind. allowed values are: no, all, root, lang_items, features, items"
912+
"unknown -Zls kind. allowed values are: all, root, lang_items, features, items"
913913
)?;
914914
}
915915
}

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ options! {
15981598
`none`, or a comma separated list of location details, for which \
15991599
valid options are `file`, `line`, and `column` (default: `file,line,column`)"),
16001600
ls: Vec<String> = (Vec::new(), parse_list, [UNTRACKED],
1601-
"decode and print various part of the crate metadata for a library crate \
1601+
"decode and print various parts of the crate metadata for a library crate \
16021602
(space separated)"),
16031603
macro_backtrace: bool = (false, parse_bool, [UNTRACKED],
16041604
"show macro backtraces (default: no)"),

0 commit comments

Comments
 (0)