Skip to content

Commit 4ce6a08

Browse files
authored
Fix a typo in libm::Libm::roundeven
1 parent 2d56e4d commit 4ce6a08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libm/src/libm_helper.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ libm_helper! {
168168
(fn remquo(x: f64, y: f64) -> (f64, i32); => remquo);
169169
(fn rint(x: f64) -> (f64); => rint);
170170
(fn round(x: f64) -> (f64); => round);
171-
(fn roundevem(x: f64) -> (f64); => roundeven);
171+
(fn roundeven(x: f64) -> (f64); => roundeven);
172172
(fn scalbn(x: f64, n: i32) -> (f64); => scalbn);
173173
(fn sin(x: f64) -> (f64); => sin);
174174
(fn sincos(x: f64) -> (f64, f64); => sincos);

0 commit comments

Comments
 (0)