1
Fork 0

Fix some typos

This commit is contained in:
Bastien Orivel 2017-08-11 20:34:14 +02:00
parent 59f6b8338e
commit 3ab86fbab2
53 changed files with 83 additions and 82 deletions

View file

@ -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 criticial components:
/// combination of two critical components:
///
/// 1. A data structure is in a temporarily invalid state when the thread
/// panics.