Revert section about panic! in assert! doc

This commit is contained in:
Panashe M. Fundira 2016-07-27 15:03:23 -04:00
parent 91acc3977b
commit 8760b1dd26
No known key found for this signature in database
GPG Key ID: ABD6E90F51BF74B5

View File

@ -32,9 +32,8 @@ macro_rules! panic {
/// Ensure that a boolean expression is `true` at runtime.
///
/// This will ensure the termination of the program if the provided expression
/// cannot be evaluated to `true` at runtime by means of an unrecoverable error
/// (not necessarily a `panic!`, can also be an `abort`).
/// This will invoke the `panic!` macro if the provided expression cannot be
/// evaluated to `true` at runtime.
///
/// Assertions are always checked in both debug and release builds, and cannot
/// be disabled.