We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47704bb commit 95b791aCopy full SHA for 95b791a
src/tools/clippy/clippy_lints/src/unused_io_amount.rs
@@ -78,7 +78,7 @@ impl<'tcx> LateLintPass<'tcx> for UnusedIoAmount {
78
79
/// If `expr` is an (e).await, return the inner expression "e" that's being
80
/// waited on. Otherwise return None.
81
-fn try_remove_await<'a>(expr: &'a hir::Expr<'a>) -> Option<&hir::Expr<'a>> {
+fn try_remove_await<'a>(expr: &'a hir::Expr<'a>) -> Option<&'a hir::Expr<'a>> {
82
if let hir::ExprKind::Match(expr, _, hir::MatchSource::AwaitDesugar) = expr.kind {
83
if let hir::ExprKind::Call(func, [ref arg_0, ..]) = expr.kind {
84
if matches!(
0 commit comments