From 3b4f2222428940d730f8af128170459aa29a136a Mon Sep 17 00:00:00 2001 From: Eric Findlay Date: Fri, 10 Jan 2020 20:52:49 +0900 Subject: [PATCH] Minor grammatical fix to docs. --- actix-rt/src/arbiter.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-rt/src/arbiter.rs b/actix-rt/src/arbiter.rs index a5cbe8e0..16534476 100644 --- a/actix-rt/src/arbiter.rs +++ b/actix-rt/src/arbiter.rs @@ -42,8 +42,8 @@ impl fmt::Debug for ArbiterCommand { #[derive(Debug)] /// Arbiters provide an asynchronous execution environment for actors, functions -/// and futures. When an Arbiter is created, they spawn a new OS thread, and -/// host an event loop. Some Arbiter functions execute on the current thread. +/// and futures. When an Arbiter is created, it spawns a new OS thread, and +/// hosts an event loop. Some Arbiter functions execute on the current thread. pub struct Arbiter { sender: UnboundedSender, thread_handle: Option>,