]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libphobos: Fix IEEE typo in std.numeric link
authorIain Buclaw <ibuclaw@gdcproject.org>
Sat, 22 Mar 2025 09:15:09 +0000 (10:15 +0100)
committerIain Buclaw <ibuclaw@gdcproject.org>
Sat, 22 Mar 2025 09:55:13 +0000 (10:55 +0100)
libphobos/ChangeLog:

* src/MERGE: Merge upstream phobos d4c9efef1.

Reviewed-on: https://github.com/dlang/phobos/pull/10700

libphobos/src/MERGE
libphobos/src/std/numeric.d

index a4888fc96180bff4f07f98d0b9c04ee796655740..7eb4c35ff84206c224ce59b73e8d1e5de88c7e84 100644 (file)
@@ -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.
index 9966b1ce77fcdf3d8cbcbd82ef05fca1320bb413..918984fd52eef973bc6963bf606cb77014b6d34f 100644 (file)
@@ -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,