From c3533bbd8fb99e887db790441c0e37a6cdb97c61 Mon Sep 17 00:00:00 2001 From: nuugen Date: Sat, 29 Jul 2023 15:27:37 +0200 Subject: [PATCH] fix: `constant` module name typo --- spotify_player/src/state/{consant.rs => constant.rs} | 0 spotify_player/src/state/mod.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename spotify_player/src/state/{consant.rs => constant.rs} (100%) diff --git a/spotify_player/src/state/consant.rs b/spotify_player/src/state/constant.rs similarity index 100% rename from spotify_player/src/state/consant.rs rename to spotify_player/src/state/constant.rs diff --git a/spotify_player/src/state/mod.rs b/spotify_player/src/state/mod.rs index 23102199..5b807219 100644 --- a/spotify_player/src/state/mod.rs +++ b/spotify_player/src/state/mod.rs @@ -1,10 +1,10 @@ -mod consant; +mod constant; mod data; mod model; mod player; mod ui; -pub use consant::*; +pub use constant::*; pub use data::*; pub use model::*; pub use player::*;