about summary refs log tree commit diff
path: root/src/libstd/panic.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2016-05-19 22:35:09 -0700
committerSteven Fackler <sfackler@gmail.com>2016-05-19 22:35:09 -0700
commit78e06adca7efe01b733fa12af9cffcb5c4a8ad0f (patch)
treeae30043f326f3df52ffc6e81e641c7b21cb84e25 /src/libstd/panic.rs
parent179539f6eb61f75244a0dde641b6e4e09c0921ec (diff)
downloadrust-78e06adca7efe01b733fa12af9cffcb5c4a8ad0f.tar.gz
rust-78e06adca7efe01b733fa12af9cffcb5c4a8ad0f.zip
Mention that the panic hook will always run
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 a2c6e79fb92..3b170dc9c6d 100644
--- a/src/libstd/panic.rs
+++ b/src/libstd/panic.rs
@@ -395,7 +395,7 @@ pub fn recover<F: FnOnce() -> R + UnwindSafe, R>(f: F) -> Result<R> {
     catch_unwind(f)
 }
 
-/// Triggers a panic without invoking the panic handler.
+/// Triggers a panic without invoking the panic hook.
 ///
 /// This is designed to be used in conjunction with `catch_unwind` to, for
 /// example, carry a panic across a layer of C code.