diff --git a/src/lib.rs b/src/lib.rs index e4760143..7d0f8caf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -220,11 +220,13 @@ pub(crate) fn assert_valid_time_value(value: f64) { } if value < 0. { - panic!("RangeError - The provided time value ({:?}) cannot be negative", value); + panic!( + "RangeError - The provided time value ({:?}) cannot be negative", + value + ); } } - pub(crate) trait AudioBufferIter: Iterator + Send + 'static {} impl + Send + 'static> AudioBufferIter for M {}