From 9e001ce86522011ff716218f29dcd9dff082d20a Mon Sep 17 00:00:00 2001 From: Stefan Schindler Date: Wed, 5 Jul 2017 22:58:39 +0200 Subject: [PATCH] Be more specific about the implications of the panic! --- src/libstd/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index fbf2ba7f9a03..a45d37b07929 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 ///