From b284c8d608d0101276b9503d7fa1a9a57ce1d472 Mon Sep 17 00:00:00 2001 From: king6cong Date: Thu, 17 Jan 2019 17:34:25 +0800 Subject: [PATCH] Doc rewording --- 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 b87257188df10..2431ae80554c3 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -8,7 +8,7 @@ /// /// 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. +/// an unrecoverable state. /// /// This macro is the perfect way to assert conditions in example code and in /// tests. `panic!` is closely tied with the `unwrap` method of both [`Option`]