Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
This patch fixes a typo in rom_data.rs

closes #672
  • Loading branch information
jlpettersson committed Aug 23, 2023
1 parent 6508033 commit b34ae51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rp2040-hal/src/rom_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ pub mod double_funcs {
/// representation to the nearest double value, rounding to even on tie. `n`
/// specifies the position of the binary point in fixed point, so `f =
/// nearest(v/(2^n))`
0x60 fix64_to_doubl(v: i64, n: i32) -> f64;
0x60 fix64_to_double(v: i64, n: i32) -> f64;
/// Converts an unsigned 64-bit integer to the
/// nearest double value, rounding to even on tie
0x64 uint64_to_double(v: u64) -> f64;
Expand Down

0 comments on commit b34ae51

Please sign in to comment.