From 90bc35efd1578733e76b163dabbdc0e3abe5dee8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 22:49:39 +0000 Subject: [PATCH 1/2] Initial plan From ad7c779ee214e1481ecec8173af50b79ce1ef393 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Feb 2026 22:53:45 +0000 Subject: [PATCH 2/2] Fix typo in Hypot documentation: change second parameter from x to y Co-authored-by: vcsjones <361677+vcsjones@users.noreply.github.com> --- .../System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs b/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs index eec32376087d0d..ac5c854d81803c 100644 --- a/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs +++ b/src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorPrimitives.Hypot.cs @@ -18,7 +18,7 @@ public static partial class TensorPrimitives /// and reference overlapping memory locations and do not begin at the same location. /// /// - /// This method effectively computes [i] = T.Hypot([i], [i]). + /// This method effectively computes [i] = T.Hypot([i], [i]). /// /// public static void Hypot(ReadOnlySpan x, ReadOnlySpan y, Span destination)