From f71bded94361323e9bddd52f3d13559887e76884 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 18 Jul 2024 18:05:16 +0900 Subject: [PATCH] sync: fix typo in name of test (#6693) --- tokio/tests/sync_watch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/tests/sync_watch.rs b/tokio/tests/sync_watch.rs index 7957c7da2..17f0c8108 100644 --- a/tokio/tests/sync_watch.rs +++ b/tokio/tests/sync_watch.rs @@ -355,7 +355,7 @@ async fn multiple_sender() { } #[tokio::test] -async fn reciever_is_notified_when_last_sender_is_dropped() { +async fn receiver_is_notified_when_last_sender_is_dropped() { let (tx1, mut rx) = watch::channel(0); let tx2 = tx1.clone();