Skip to content

Commit

Permalink
Add missing space in error message
Browse files Browse the repository at this point in the history
Before the error looked like:

> Sometimes not all components are available in any given nightly.If you
> don't need the component, you can remove it with:

Note how it's missing a space after the period after the first sentence.
  • Loading branch information
camelid authored Nov 30, 2020
1 parent 5392827 commit 5414c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ fn component_unavailable_msg(cs: &[Component], manifest: &Manifest, toolchain: &
&cs[0].description(manifest),
toolchain,
if toolchain.starts_with("nightly") {
"\nSometimes not all components are available in any given nightly."
"\nSometimes not all components are available in any given nightly. "
} else {
""
}
Expand Down

0 comments on commit 5414c42

Please sign in to comment.