about summary refs log tree commit diff
path: root/src/libstd/panic.rs
diff options
context:
space:
mode:
authormemoryleak47 <memoryleak47@protonmail.ch>2018-04-05 13:04:00 +0200
committermemoryleak47 <memoryleak47@protonmail.ch>2018-04-05 13:04:00 +0200
commit64ddb390efb2143f11c1583d52c78da5a290e097 (patch)
treeb3326301ab1eb33deb4a8f4fc14063270544ddcf /src/libstd/panic.rs
parent4be5d360cd8a9338d1408b3998874313240db395 (diff)
downloadrust-64ddb390efb2143f11c1583d52c78da5a290e097.tar.gz
rust-64ddb390efb2143f11c1583d52c78da5a290e097.zip
typos
Diffstat (limited to 'src/libstd/panic.rs')
-rw-r--r--src/libstd/panic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/panic.rs b/src/libstd/panic.rs
index 79857104b9b..28c178307a5 100644
--- a/src/libstd/panic.rs
+++ b/src/libstd/panic.rs
@@ -188,7 +188,7 @@ pub struct AssertUnwindSafe<T>(
 // * By default everything is unwind safe
 // * pointers T contains mutability of some form are not unwind safe
 // * Unique, an owning pointer, lifts an implementation
-// * Types like Mutex/RwLock which are explicilty poisoned are unwind safe
+// * Types like Mutex/RwLock which are explicitly poisoned are unwind safe
 // * Our custom AssertUnwindSafe wrapper is indeed unwind safe
 
 #[stable(feature = "catch_unwind", since = "1.9.0")]