From 6f8a4d7a0b4c7cb0aa8f46f844ff8a47a24bc6fd Mon Sep 17 00:00:00 2001 From: Henry Gomersall Date: Wed, 20 Jan 2021 15:28:35 +0000 Subject: [PATCH] docs: trivial typo fix (#3449) --- tokio/src/sync/mutex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/sync/mutex.rs b/tokio/src/sync/mutex.rs index 15a418d09..028333627 100644 --- a/tokio/src/sync/mutex.rs +++ b/tokio/src/sync/mutex.rs @@ -142,7 +142,7 @@ pub struct MutexGuard<'a, T: ?Sized> { /// unlike `MutexGuard`, it will have the `'static` lifetime. /// /// As long as you have this guard, you have exclusive access to the underlying -/// `T`. The guard internally keeps a reference-couned pointer to the original +/// `T`. The guard internally keeps a reference-counted pointer to the original /// `Mutex`, so even if the lock goes away, the guard remains valid. /// /// The lock is automatically released whenever the guard is dropped, at which