Fix wrong spelling of `unreachable unchecked`.
This is why the CI for jemallocator is failing right now.
This commit is contained in:
parent
f473b10921
commit
d5fccc7fca
|
@ -81,7 +81,7 @@ macro_rules! assume {
|
|||
($e:expr) => {
|
||||
debug_assert!($e);
|
||||
if !($e) {
|
||||
core::hint::unrachable_unchecked();
|
||||
core::hint::unreachable_unchecked();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue