Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Sep 7, 2023
1 parent 27095fb commit 0822b21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wave.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl Wave {
if let PropertyValue::FloatValue(v) = v {
Ok(*v)
} else {
Err(anyhow!("delay property should be an float"))
Err(anyhow!("delay property should be a float"))
}
})?;

Expand All @@ -109,7 +109,7 @@ impl Wave {
if let PropertyValue::FloatValue(v) = v {
Ok(*v)
} else {
Err(anyhow!("interval property should be an float"))
Err(anyhow!("interval property should be a float"))
}
})?;

Expand Down Expand Up @@ -145,7 +145,7 @@ impl Wave {
if let PropertyValue::FloatValue(v) = v {
Ok(*v)
} else {
Err(anyhow!("speed property should be an float"))
Err(anyhow!("speed property should be a float"))
}
})?;

Expand Down

0 comments on commit 0822b21

Please sign in to comment.