Fixing minor spelling mistake in task docs (#1889)

This commit is contained in:
Christopher Coverdale 2019-12-03 20:01:59 +00:00 committed by Carl Lerche
parent 8a2160a913
commit 6efe07c3fb

View File

@ -4,7 +4,7 @@
//!
//! A _task_ is a light weight, non-blocking unit of execution. A task is similar
//! to an OS thread, but rather than being managed by the OS scheduler, they are
//! managed by the [Tokio runtime][rt]. Another name for this general patterh is
//! managed by the [Tokio runtime][rt]. Another name for this general pattern is
//! [green threads]. If you are familiar with [Go's goroutines], [Kotlin's
//! coroutines], or [Erlang's processes], you can think of Tokio's tasks as
//! something similar.