diff --git a/src/plugin.rs b/src/plugin.rs
index 7d0b70cd4f13cc7be97674d3b0a91fb639460827..861f32d6170e383bee65cf2079e5de31b460c6e1 100644
--- a/src/plugin.rs
+++ b/src/plugin.rs
@@ -36,11 +36,11 @@ impl Plugin for TweeningPlugin {
         app.add_event::<TweenCompleted>()
             .add_system(component_animator_system::<Transform>);
 
-        #[cfg(eature = "bevy_ui")]
+        #[cfg(feature = "bevy_ui")]
         app.add_system(component_animator_system::<Text>)
             .add_system(component_animator_system::<Style>);
 
-        #[cfg(eature = "bevy_sprite")]
+        #[cfg(feature = "bevy_sprite")]
         app.add_system(component_animator_system::<Sprite>)
             .add_system(asset_animator_system::<ColorMaterial>);
     }