1
Fork 0

Remove parens

This commit is contained in:
Unreachable 2019-04-05 17:42:09 +00:00
parent 84096e0530
commit 62a7bfd1ba

View file

@ -21,10 +21,10 @@ use intrinsics;
/// difficult-to-debug problems.
///
/// Use this function only when you can prove that the code will never call it.
/// Otherwise, consider using the [`unreachable!()`] macro, which does not allow
/// Otherwise, consider using the [`unreachable!`] macro, which does not allow
/// optimizations but will panic when executed.
///
/// [`unreachable!()`]: ../macro.unreachable.html
/// [`unreachable!`]: ../macro.unreachable.html
///
/// # Example
///