to_ne_bytes

This commit is contained in:
Folkert 2021-05-08 14:26:03 +02:00
parent a48040e2ad
commit 03d5f05226
2 changed files with 3 additions and 3 deletions

View file

@ -102,8 +102,8 @@ impl Symbol {
}
}
pub const fn to_be_bytes(self) -> [u8; 8] {
self.0.to_be_bytes()
pub const fn to_ne_bytes(self) -> [u8; 8] {
self.0.to_ne_bytes()
}
}