Skip to content

Commit

Permalink
✏️ fix missing space in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Oct 28, 2024
1 parent 74aa974 commit f42ad30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/archive/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl ArchiveHeader {
pub(crate) const fn from_bytes(bytes: &[u8; 8]) -> Self {
let major = bytes[0];
let minor = bytes[1];
// NOTE: ignore 2bytes currently unused.
// NOTE: ignore 2 bytes currently unused.
let archive_number = u32::from_be_bytes([bytes[4], bytes[5], bytes[6], bytes[7]]);
Self::new(major, minor, archive_number)
}
Expand Down

0 comments on commit f42ad30

Please sign in to comment.