docs: trivial typo fix (#3449)

This commit is contained in:
Henry Gomersall
2021-01-20 16:28:35 +01:00
committed by GitHub
parent fdde5583f8
commit 6f8a4d7a0b
+1 -1
View File
@@ -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