diff --git a/Cargo.lock b/Cargo.lock index 75c30b3..d60e648 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3597,7 +3597,7 @@ dependencies = [ [[package]] name = "the-labyrinth-of-echoes" -version = "0.1.0" +version = "0.0.1" dependencies = [ "bevy", "log", diff --git a/Cargo.toml b/Cargo.toml index 65bd166..272de97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "the-labyrinth-of-echoes" authors = ["Kristofers Solo "] -version = "0.1.0" +version = "0.0.1" edition = "2021" [dependencies] diff --git a/src/audio.rs b/src/audio.rs index 8c59ce0..5a5a009 100644 --- a/src/audio.rs +++ b/src/audio.rs @@ -7,7 +7,7 @@ use bevy::prelude::*; /// /// ``` /// use bevy::prelude::*; -/// use the-labyrinth-of-echoes::audio::Music; +/// use the_labyrinth_of_echoes::audio::Music; /// /// fn set_music_volume(sink_query: Query<&AudioSink, With>) { /// for sink in &sink_query { @@ -25,7 +25,7 @@ pub struct Music; /// /// ``` /// use bevy::prelude::*; -/// use the-labyrinth-of-echoes::audio::SoundEffect; +/// use the_labyrinth_of_echoes::audio::SoundEffect; /// /// fn set_sound_effect_volume(sink_query: Query<&AudioSink, With>) { /// for sink in &sink_query {