From 05995b1786eb4121f4993884615dd1dc43d18064 Mon Sep 17 00:00:00 2001 From: David Kwong <48238174+brahms116@users.noreply.github.com> Date: Sun, 9 Apr 2023 13:28:13 +1000 Subject: [PATCH 1/2] fix: typo in comment inside reactor.rs --- src/reactor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reactor.rs b/src/reactor.rs index f49b345..110ce4f 100644 --- a/src/reactor.rs +++ b/src/reactor.rs @@ -295,7 +295,7 @@ impl ReactorLock<'_> { } } - // Re-register if there are still writers or readers. The can happen if + // Re-register if there are still writers or readers. That can happen if // e.g. we were previously interested in both readability and writability, // but only one of them was emitted. if !state[READ].is_empty() || !state[WRITE].is_empty() { From 3fc7913b0ce1c27ad7ec26b94b0d99df51dcf3b7 Mon Sep 17 00:00:00 2001 From: David Kwong <48238174+brahms116@users.noreply.github.com> Date: Sun, 9 Apr 2023 21:27:02 +1000 Subject: [PATCH 2/2] fix: adjust typo correction in reactor.rs --- src/reactor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reactor.rs b/src/reactor.rs index 110ce4f..bba76db 100644 --- a/src/reactor.rs +++ b/src/reactor.rs @@ -295,7 +295,7 @@ impl ReactorLock<'_> { } } - // Re-register if there are still writers or readers. That can happen if + // Re-register if there are still writers or readers. This can happen if // e.g. we were previously interested in both readability and writability, // but only one of them was emitted. if !state[READ].is_empty() || !state[WRITE].is_empty() {