summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tokio/src/signal/ctrl_c.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tokio/src/signal/ctrl_c.rs b/tokio/src/signal/ctrl_c.rs
index 2240052c..1eeeb85a 100644
--- a/tokio/src/signal/ctrl_c.rs
+++ b/tokio/src/signal/ctrl_c.rs
@@ -11,9 +11,9 @@ use std::io;
/// platforms support receiving a signal on "ctrl-c". This function provides a
/// portable API for receiving this notification.
///
-/// Once the returned future is polled, a listener a listener is registered. The
-/// future will complete on the first received `ctrl-c` **after** the initial
-/// call to either `Future::poll` or `.await`.
+/// Once the returned future is polled, a listener is registered. The future
+/// will complete on the first received `ctrl-c` **after** the initial call to
+/// either `Future::poll` or `.await`.
///
/// # Caveats
///