about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorStefan Schindler <dns2utf8@estada.ch>2017-07-05 22:58:39 +0200
committerStefan Schindler <dns2utf8@estada.ch>2017-07-05 23:44:24 +0200
commit9e001ce86522011ff716218f29dcd9dff082d20a (patch)
tree0684f885be4e54f9581cd383d05d8728174000ee /src/libstd
parentd5390573ba468d4f1d06bf4f3ba6d54ec26c98c5 (diff)
downloadrust-9e001ce86522011ff716218f29dcd9dff082d20a.tar.gz
rust-9e001ce86522011ff716218f29dcd9dff082d20a.zip
Be more specific about the implications of the panic!
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index fbf2ba7f9a0..a45d37b0792 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -26,7 +26,7 @@
 ///
 /// # Current implementation
 ///
-/// If the main thread panics it will return with code `101`.
+/// If the main thread panics it will terminate all your threads and end your program with code `101`.
 ///
 /// # Examples
 ///