about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-02-13 04:36:55 +0100
committerGitHub <noreply@github.com>2019-02-13 04:36:55 +0100
commit734cc3e79ed2a599482a41ae5edd88338603d954 (patch)
treedbd35ac77209b0ed2b71c253f3b4169b9759f5a0 /src/libstd
parent0f949c2fcc696d0260a99196d5e5400c59a26a54 (diff)
parentb284c8d608d0101276b9503d7fa1a9a57ce1d472 (diff)
downloadrust-734cc3e79ed2a599482a41ae5edd88338603d954.tar.gz
rust-734cc3e79ed2a599482a41ae5edd88338603d954.zip
Rollup merge of #57693 - king6cong:word, r=Centril
Doc rewording

None
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 dfe3079bb6c..b9204d27f53 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`]