Rollup merge of #57693 - king6cong:word, r=Centril

Doc rewording

None
This commit is contained in:
Mazdak Farrokhzad 2019-02-13 04:36:55 +01:00 committed by GitHub
commit 734cc3e79e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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`]