From 0f3185e9541f05c55995219a4b8ee64725a56e83 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Thu, 20 Mar 2025 15:11:25 +0100 Subject: [PATCH] std.numeric: Fix IEEE typo in link --- std/numeric.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/numeric.d b/std/numeric.d index 9966b1ce7..918984fd5 100644 --- a/std/numeric.d +++ b/std/numeric.d @@ -37,7 +37,7 @@ public enum CustomFloatFlags * Store values in normalized form by default. The actual precision of the * significand is extended by 1 bit by assuming an implicit leading bit of 1 * instead of 0. i.e. `1.nnnn` instead of `0.nnnn`. - * True for all $(LINK2 https://en.wikipedia.org/wiki/IEEE_floating_point, IEE754) types + * True for all $(LINK2 https://en.wikipedia.org/wiki/IEEE_floating_point, IEEE754) types */ storeNormalized = 2,