From 615779187c4920a50f7335cee276dd398de3707e Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sat, 22 Jun 2024 05:33:13 +0000 Subject: [PATCH] Fix typo --- crates/binstalk-fetchers/src/futures_resolver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/binstalk-fetchers/src/futures_resolver.rs b/crates/binstalk-fetchers/src/futures_resolver.rs index 737a8fc1..fb0adda8 100644 --- a/crates/binstalk-fetchers/src/futures_resolver.rs +++ b/crates/binstalk-fetchers/src/futures_resolver.rs @@ -77,7 +77,7 @@ impl FuturesResolver { while let Some(res) = rx.recv().await { match res { Ok(ret) => return Some(ret), - Err(err) => warn!(?err, "Faile to resolve the future"), + Err(err) => warn!(?err, "Fail to resolve the future"), } } None