Skip to content

Commit

Permalink
Update src/rules/keyframes.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Devon Govett <devongovett@gmail.com>
  • Loading branch information
grimsteel and devongovett authored Aug 2, 2024
1 parent 192547d commit cf36502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rules/keyframes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ pub struct TimelineRangePercentage {

impl<'i> Parse<'i> for TimelineRangePercentage {
fn parse<'t>(input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i, ParserError<'i>>> {
let timeline_range_name = input.try_parse(TimelineRangeName::parse)?;
let percentage = input.try_parse(Percentage::parse)?;
let timeline_range_name = TimelineRangeName::parse(input)?;
let percentage = Percentage::parse(input)?;
Ok(TimelineRangePercentage {
timeline_range_name,
percentage
Expand Down

0 comments on commit cf36502

Please sign in to comment.