mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 13:57: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}{}",
|
||||
.suggestion
|
||||
.as_ref()
|
||||
.map(|s| format!("; did you mean '{}'?", s))
|
||||
.unwrap_or_else(String::new),
|
||||
.map_or_else(String::new, |s| format!("; did you mean '{}'?", s)),
|
||||
)]
|
||||
UnknownComponent {
|
||||
name: String,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue