Fix wrong spelling of `unreachable unchecked`.

This is why the CI for jemallocator is failing right now.
This commit is contained in:
SlightlyOutOfPhase 2019-08-09 21:11:59 -04:00 committed by gnzlbg
parent f473b10921
commit d5fccc7fca
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ macro_rules! assume {
($e:expr) => {
debug_assert!($e);
if !($e) {
core::hint::unrachable_unchecked();
core::hint::unreachable_unchecked();
}
}
}