Skip to content

Commit 8cedbc0

Browse files
committed
fmt
1 parent 156b3cf commit 8cedbc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,13 @@ pub(crate) fn assert_valid_time_value(value: f64) {
220220
}
221221

222222
if value < 0. {
223-
panic!("RangeError - The provided time value ({:?}) cannot be negative", value);
223+
panic!(
224+
"RangeError - The provided time value ({:?}) cannot be negative",
225+
value
226+
);
224227
}
225228
}
226229

227-
228230
pub(crate) trait AudioBufferIter: Iterator<Item = FallibleBuffer> + Send + 'static {}
229231

230232
impl<M: Iterator<Item = FallibleBuffer> + Send + 'static> AudioBufferIter for M {}

0 commit comments

Comments
 (0)