summaryrefslogtreecommitdiffstats
path: root/tokio-executor/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-executor/src/lib.rs')
-rw-r--r--tokio-executor/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tokio-executor/src/lib.rs b/tokio-executor/src/lib.rs
index 5e1b1481..ccf22b84 100644
--- a/tokio-executor/src/lib.rs
+++ b/tokio-executor/src/lib.rs
@@ -20,7 +20,7 @@
//! * The [`Executor`] trait describes the API for spawning a future onto an
//! executor.
//!
-//! * [`enter`] marks that the the current thread is entering an execution
+//! * [`enter`] marks that the current thread is entering an execution
//! context. This prevents a second executor from accidentally starting from
//! within the context of one that is already running.
//!
@@ -114,7 +114,7 @@ pub trait Executor {
///
/// # Panics
///
- /// Implementors are encouraged to avoid panics. However, a panic is
+ /// Implementers are encouraged to avoid panics. However, a panic is
/// permitted and the caller should check the implementation specific
/// documentation for more details on possible panics.
///
@@ -148,7 +148,7 @@ pub trait Executor {
///
/// # Panics
///
- /// This function must not panic. Implementors must ensure that panics do
+ /// This function must not panic. Implementers must ensure that panics do
/// not happen.
///
/// # Examples