Skip to content

Commit c1a3919

Browse files
committed
Auto merge of #118792 - naglis:fix-mutex-doc-typo, r=workingjubilee
Fix typo in `std::sync::Mutex` example
2 parents 42dfac5 + 7d50a39 commit c1a3919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sync/mutex.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ use crate::sys::locks as sys;
146146
/// let result = data.iter().fold(0, |acc, x| acc + x * 2);
147147
/// data.push(result);
148148
/// // We drop the `data` explicitly because it's not necessary anymore and the
149-
/// // thread still has work to do. This allow other threads to start working on
149+
/// // thread still has work to do. This allows other threads to start working on
150150
/// // the data immediately, without waiting for the rest of the unrelated work
151151
/// // to be done here.
152152
/// //

0 commit comments

Comments
 (0)