From 2e7d531515e0b59bedf9381afa197529c77cb609 Mon Sep 17 00:00:00 2001 From: Per Lundberg Date: Wed, 9 Aug 2023 08:04:18 +0300 Subject: [PATCH] Fix Dragon4 tutorial URL (#90186) --- src/libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs b/src/libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs index 2501c22..10fbfcd 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs @@ -6,7 +6,7 @@ using System.Numerics; namespace System { - // This is a port of the `Dragon4` implementation here: http://www.ryanjuckett.com/programming/printing-floating-point-numbers/part-2/ + // This is a port of the `Dragon4` implementation here: https://www.ryanjuckett.com/printing-floating-point-numbers-part-2-dragon4/ // The backing algorithm and the proofs behind it are described in more detail here: https://www.cs.indiana.edu/~dyb/pubs/FP-Printing-PLDI96.pdf internal static partial class Number { -- 2.7.4