about summary refs log tree commit diff
path: root/src/libstd/panic.rs
diff options
context:
space:
mode:
authorBastien Orivel <eijebong@bananium.fr>2017-08-11 00:16:18 +0200
committerBastien Orivel <eijebong@bananium.fr>2017-08-11 00:16:18 +0200
commit47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de (patch)
treed322ab0b4256ce1b79dc63e2fab5e70a774c93c6 /src/libstd/panic.rs
parent2ac5f7d249e29ee48737359e0e6dd9e59701a568 (diff)
downloadrust-47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de.tar.gz
rust-47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de.zip
Fix some 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 58356bc43ee..10b3209257e 100644
--- a/src/libstd/panic.rs
+++ b/src/libstd/panic.rs
@@ -37,7 +37,7 @@ pub use panicking::{take_hook, set_hook, PanicInfo, Location};
 /// In Rust a function can "return" early if it either panics or calls a
 /// function which transitively panics. This sort of control flow is not always
 /// anticipated, and has the possibility of causing subtle bugs through a
-/// combination of two cricial components:
+/// combination of two criticial components:
 ///
 /// 1. A data structure is in a temporarily invalid state when the thread
 ///    panics.