Skip to content

Commit

Permalink
chore: Tween is Default, so remove redundant bound. (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Aug 17, 2024
1 parent 4095893 commit cef2c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl<T: Tween> Value<T> {
}
}

impl<T: Tween + Default> Default for Value<T> {
impl<T: Tween> Default for Value<T> {
fn default() -> Self {
Self::Fixed(T::default())
}
Expand Down

0 comments on commit cef2c83

Please sign in to comment.