Skip to content

Commit

Permalink
Fix module name
Browse files Browse the repository at this point in the history
  • Loading branch information
janhohenheim committed Aug 31, 2024
1 parent 7ea8dcb commit f322f80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use bevy::prelude::*;
///
/// ```
/// use bevy::prelude::*;
/// use bevy_quickstart::audio::Music;
/// use foxtrot::audio::Music;
///
/// fn set_music_volume(sink_query: Query<&AudioSink, With<Music>>) {
/// for sink in &sink_query {
Expand All @@ -25,7 +25,7 @@ pub struct Music;
///
/// ```
/// use bevy::prelude::*;
/// use bevy_quickstart::audio::SoundEffect;
/// use foxtrot::audio::SoundEffect;
///
/// fn set_sound_effect_volume(sink_query: Query<&AudioSink, With<SoundEffect>>) {
/// for sink in &sink_query {
Expand Down

0 comments on commit f322f80

Please sign in to comment.