From 0ca8353651e6e100224001697f9bb93f0380b037 Mon Sep 17 00:00:00 2001 From: eyelash Date: Wed, 12 Feb 2025 09:54:33 +0100 Subject: [PATCH 1/2] `f16` is half-precision --- library/std/src/f16.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/f16.rs b/library/std/src/f16.rs index cc523c93b4de7..f6a553b1d0fa2 100644 --- a/library/std/src/f16.rs +++ b/library/std/src/f16.rs @@ -1,4 +1,4 @@ -//! Constants for the `f16` double-precision floating point type. +//! Constants for the `f16` half-precision floating point type. //! //! *[See also the `f16` primitive type](primitive@f16).* //! From 4f37b458fc729c1f8b992cdda9f62f6b944b4106 Mon Sep 17 00:00:00 2001 From: eyelash Date: Wed, 12 Feb 2025 09:55:45 +0100 Subject: [PATCH 2/2] `f128` is quadruple-precision --- library/std/src/f128.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/f128.rs b/library/std/src/f128.rs index 89612fa747551..cff0bf4ccf4c4 100644 --- a/library/std/src/f128.rs +++ b/library/std/src/f128.rs @@ -1,4 +1,4 @@ -//! Constants for the `f128` double-precision floating point type. +//! Constants for the `f128` quadruple-precision floating point type. //! //! *[See also the `f128` primitive type](primitive@f128).* //!