Skip to content

Commit a12a180

Browse files
committed
fix: Run "cargo fmt" to clean up a few tiny formatting nits
1 parent 399bb34 commit a12a180

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/bbox/iloc.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,10 @@ impl From<u8> for ConstructionMethod {
167167
1 => Self::IdatOffset,
168168
2 => Self::ItemOffset,
169169
other => {
170-
tracing::warn!(other, "Unknown construction method, defaulting to FileOffset");
170+
tracing::warn!(
171+
other,
172+
"Unknown construction method, defaulting to FileOffset"
173+
);
171174
Self::FileOffset
172175
}
173176
}

src/skip.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ pub struct Seekable(());
2121
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Copy)]
2222
pub struct Unseekable(());
2323

24-
2524
/// Abstracts the operation of skipping some bytes.
2625
///
2726
/// The user specifies the parser's `Skip` behavior using [`SkipSeek`] or
@@ -133,7 +132,6 @@ impl<R: AsyncSeek + Unpin + Send> AsyncSkip<R> for Seekable {
133132
}
134133
}
135134

136-
137135
#[cfg(test)]
138136
mod tests {
139137
use super::*;

0 commit comments

Comments
 (0)