]> git.lizzy.rs Git - rust.git/commitdiff
Doc rewording
authorking6cong <king6cong@gmail.com>
Thu, 17 Jan 2019 09:34:25 +0000 (17:34 +0800)
committerking6cong <king6cong@gmail.com>
Tue, 12 Feb 2019 08:45:19 +0000 (16:45 +0800)
src/libstd/macros.rs

index b87257188df10c50a1e34cccff76191c838f2769..2431ae80554c38213e51af61637b29fd07295815 100644 (file)
@@ -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`]