about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2023-06-21 12:43:22 +0200
committerGitHub <noreply@github.com>2023-06-21 12:43:22 +0200
commit3acb1d2b9b5f0ab85cb787250326c0571503f78c (patch)
tree4f6b9f7ac38e18a3d459e88e8a4d0af1d22882fd /library/std/src
parentbf27f12d941b2aea125bd629c1f30feaacf41cc6 (diff)
downloadrust-3acb1d2b9b5f0ab85cb787250326c0571503f78c.tar.gz
rust-3acb1d2b9b5f0ab85cb787250326c0571503f78c.zip
"Memory Orderings" -> "Memory Ordering"
Co-authored-by: yvt <i@yvt.jp>
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/thread/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs
index e9d94ba425a..b9b14b2dc5f 100644
--- a/library/std/src/thread/mod.rs
+++ b/library/std/src/thread/mod.rs
@@ -879,7 +879,7 @@ pub fn sleep(dur: Duration) {
 ///
 /// * It can be implemented very efficiently on many platforms.
 ///
-/// # Memory Orderings
+/// # Memory Ordering
 ///
 /// Calls to `park` _synchronize-with_ calls to `unpark`, meaning that memory
 /// operations performed before a call to `unpark` are made visible to the thread that