about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorking6cong <king6cong@gmail.com>2019-01-17 17:34:25 +0800
committerking6cong <king6cong@gmail.com>2019-02-12 16:45:19 +0800
commitb284c8d608d0101276b9503d7fa1a9a57ce1d472 (patch)
tree93f408cd01eaf1bd8cbd570ab11523b0ac886cac /src/libstd
parente2f221c75932de7a29845c8d6f1f73536ad00c41 (diff)
downloadrust-b284c8d608d0101276b9503d7fa1a9a57ce1d472.tar.gz
rust-b284c8d608d0101276b9503d7fa1a9a57ce1d472.zip
Doc rewording
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 b87257188df..2431ae80554 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`]