about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorMartin Ombura Jr. <8682597+martinomburajr@users.noreply.github.com>2025-07-15 20:07:03 -0700
committerGitHub <noreply@github.com>2025-07-15 20:07:03 -0700
commitf1d84468c87a4e8ea96e603d21c460004bdeb24f (patch)
tree5c0faf351c299d9d9bf7c557c5a33a6c83c4ef79 /library/std
parent3014e79f9c8d5510ea7b3a3b70d171d0948b1e96 (diff)
downloadrust-f1d84468c87a4e8ea96e603d21c460004bdeb24f.tar.gz
rust-f1d84468c87a4e8ea96e603d21c460004bdeb24f.zip
Update poison.rs
Typo in word "below"
Diffstat (limited to 'library/std')
-rw-r--r--library/std/src/sync/poison.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/poison.rs b/library/std/src/sync/poison.rs
index 571f0d14248..0c05f152ef8 100644
--- a/library/std/src/sync/poison.rs
+++ b/library/std/src/sync/poison.rs
@@ -10,7 +10,7 @@
 //! (some invariant is not being upheld).
 //!
 //! The specifics of how this "poisoned" state affects other threads
-//! depend on the primitive. See [#Overview] bellow.
+//! depend on the primitive. See [#Overview] below.
 //!
 //! For the alternative implementations that do not employ poisoning,
 //! see `std::sync::nonpoisoning`.