Skip to content

Commit

Permalink
Missed one of the clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
nekevss committed Dec 8, 2024
1 parent d250da9 commit 133478e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/engine/src/builtins/temporal/plain_month_day/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ fn to_temporal_month_day(

let year = item
.get_v(js_string!("year"), context)?
.map(|v| to_integer_if_integral(&v, context))
.map(|v| to_integer_if_integral(v, context))
.transpose()?
.unwrap_or(1972);

Expand Down

0 comments on commit 133478e

Please sign in to comment.