update stderr messages

This commit is contained in:
Jason Newcomb 2021-08-14 19:52:59 -04:00
parent 5e4d8b44f9
commit 10c0460a47
No known key found for this signature in database
GPG Key ID: DA59E8643A37ED06

View File

@ -14,10 +14,10 @@ LL | | };
= note: `-D clippy::manual-map` implied by `-D warnings`
help: try this
|
LL | let _ = Some(0).map(|x| {
LL | let y = (String::new(), String::new());
LL | (x, y.0)
LL | });
LL ~ let _ = Some(0).map(|x| {
LL + let y = (String::new(), String::new());
LL + (x, y.0)
LL ~ });
|
error: manual implementation of `Option::map`
@ -34,9 +34,9 @@ LL | | };
|
help: try this
|
LL | let _ = s.as_ref().map(|x| {
LL | if let Some(ref s) = s { (x.clone(), s) } else { panic!() }
LL | });
LL ~ let _ = s.as_ref().map(|x| {
LL + if let Some(ref s) = s { (x.clone(), s) } else { panic!() }
LL ~ });
|
error: aborting due to 2 previous errors