From 8cedbc00fb4fa7f10eed7dcbdf947c76a201888c Mon Sep 17 00:00:00 2001 From: b-ma Date: Mon, 1 Jan 2024 18:13:30 +0100 Subject: [PATCH] fmt --- src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 {}