mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 14:27:38 +03:00
Resolve clippy map_unwrap_or pedantic lint in test suite
This commit is contained in:
parent
54adff8fc5
commit
3e48c540f6
1 changed files with 1 additions and 2 deletions
|
@ -39,8 +39,7 @@ pub enum RustupError {
|
||||||
"toolchain '{name}' does not contain component {component}{}",
|
"toolchain '{name}' does not contain component {component}{}",
|
||||||
.suggestion
|
.suggestion
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map(|s| format!("; did you mean '{}'?", s))
|
.map_or_else(String::new, |s| format!("; did you mean '{}'?", s)),
|
||||||
.unwrap_or_else(String::new),
|
|
||||||
)]
|
)]
|
||||||
UnknownComponent {
|
UnknownComponent {
|
||||||
name: String,
|
name: String,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue