Rollup merge of - dwijnand:patch-1, r=bluss

Fix a typo in std::panic
This commit is contained in:
kennytm 2018-11-13 13:03:15 +08:00
commit 910289c9da
No known key found for this signature in database
GPG Key ID: FEF6C8051D0E013C

View File

@ -16,7 +16,7 @@
/// The entry point for panic of Rust threads.
///
/// This allows a program to to terminate immediately and provide feedback
/// This allows a program to terminate immediately and provide feedback
/// to the caller of the program. `panic!` should be used when a program reaches
/// an unrecoverable problem.
///