Skip to content

Commit

Permalink
Remove accidental explicit type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbabcock committed Nov 21, 2023
1 parent 249046a commit 51bfa80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/text/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ where
{
let val = self
.read_scalar()
.and_then(|x: crate::Scalar<'_>| x.to_f64().map_err(Error::from));
.and_then(|x| x.to_f64().map_err(Error::from));

if let Ok(x) = val {
visitor.visit_f64(x)
Expand Down

0 comments on commit 51bfa80

Please sign in to comment.