aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2025-03-22 10:15:09 +0100
committerIain Buclaw <ibuclaw@gdcproject.org>2025-03-22 10:55:13 +0100
commite6ff1dc191f2dc6fd96d755fdc18fcbaade56e12 (patch)
treeb9c009b873f5ceb0eef4f66d081ab2f64b9a5795
parent7a6bbab6ae5c472aa09f4c19a0fc6959367829ab (diff)
downloadgcc-e6ff1dc191f2dc6fd96d755fdc18fcbaade56e12.zip
gcc-e6ff1dc191f2dc6fd96d755fdc18fcbaade56e12.tar.gz
gcc-e6ff1dc191f2dc6fd96d755fdc18fcbaade56e12.tar.bz2
libphobos: Fix IEEE typo in std.numeric link
libphobos/ChangeLog: * src/MERGE: Merge upstream phobos d4c9efef1. Reviewed-on: https://github.com/dlang/phobos/pull/10700
-rw-r--r--libphobos/src/MERGE2
-rw-r--r--libphobos/src/std/numeric.d2
2 files changed, 2 insertions, 2 deletions
diff --git a/libphobos/src/MERGE b/libphobos/src/MERGE
index a4888fc..7eb4c35 100644
--- a/libphobos/src/MERGE
+++ b/libphobos/src/MERGE
@@ -1,4 +1,4 @@
-79cbde1ab69bae9372f310d663edfc43166095e3
+d4c9efef156385204d382cd941dc58bb750d7141
The first line of this file holds the git revision number of the last
merge done from the dlang/phobos repository.
diff --git a/libphobos/src/std/numeric.d b/libphobos/src/std/numeric.d
index 9966b1c..918984f 100644
--- a/libphobos/src/std/numeric.d
+++ b/libphobos/src/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,