Skip to content

Commit

Permalink
unrelated clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Easyoakland committed Jun 22, 2024
1 parent fe4da21 commit c1360d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ where
// did not contain a valid rust style float. This is expected to be
// used only to parse f32s or f64s and may panic otherwise.
#[inline(always)]
fn parse_f<T: Tokens<Item = char>, F, B, E>(t: &mut T) -> Option<F>
fn parse_f<T, F, B, E>(t: &mut T) -> Option<F>
where
T: Tokens<Item = char>,
F: core::str::FromStr<Err = E>,
Expand Down

0 comments on commit c1360d6

Please sign in to comment.