From c8fbec63e82c1b93b77eb6d408c8c6c955b60201 Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Tue, 25 Jun 2019 20:39:09 +0200 Subject: [PATCH] Fix doc for floorf --- src/math/floorf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/floorf.rs b/src/math/floorf.rs index ae605e1..c04f18a 100644 --- a/src/math/floorf.rs +++ b/src/math/floorf.rs @@ -1,6 +1,6 @@ use core::f32; -/// Floor (f64) +/// Floor (f32) /// /// Finds the nearest integer less than or equal to `x`. #[inline]