about summary refs log tree commit diff
path: root/library/std/src/sync
diff options
context:
space:
mode:
authorcrystalstall <crystalruby@qq.com>2025-01-06 15:47:49 +0800
committercrystalstall <crystalruby@qq.com>2025-01-06 15:47:49 +0800
commit591bf634394867c44cfc5cdaf391f948e6c3d11a (patch)
tree29342b03181f644bb2ab04b7ed1570c0e79dbf58 /library/std/src/sync
parent56f9e6f935f9b0d6e83092a0f86d4dbeb878f17d (diff)
downloadrust-591bf634394867c44cfc5cdaf391f948e6c3d11a.tar.gz
rust-591bf634394867c44cfc5cdaf391f948e6c3d11a.zip
chore: remove redundant words in comment
Signed-off-by: crystalstall <crystalruby@qq.com>
Diffstat (limited to 'library/std/src/sync')
-rw-r--r--library/std/src/sync/poison/mutex.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/poison/mutex.rs b/library/std/src/sync/poison/mutex.rs
index e28c2090afe..01ef71a187f 100644
--- a/library/std/src/sync/poison/mutex.rs
+++ b/library/std/src/sync/poison/mutex.rs
@@ -534,7 +534,7 @@ impl<T: ?Sized> Mutex<T> {
     /// # Errors
     ///
     /// If another user of this mutex panicked while holding the mutex, then
-    /// this call will return an error containing the the underlying data
+    /// this call will return an error containing the underlying data
     /// instead.
     ///
     /// # Examples