diff --git a/crates/bevy_audio/src/audio_source.rs b/crates/bevy_audio/src/audio_source.rs index 4fcf2a4c36..217c9aa868 100644 --- a/crates/bevy_audio/src/audio_source.rs +++ b/crates/bevy_audio/src/audio_source.rs @@ -58,7 +58,7 @@ impl AssetLoader for AudioLoader { /// A type implementing this trait can be decoded as a rodio source pub trait Decodable: Send + Sync + 'static { /// The decoder that can decode the implementing type - type Decoder: rodio::Source + Send + Sync + Iterator; + type Decoder: rodio::Source + Send + Iterator; /// A single value given by the decoder type DecoderItem: rodio::Sample + Send + Sync;