From 7dbfe7a38c05f12fc22c0d0a45d2eb1dd52d2088 Mon Sep 17 00:00:00 2001 From: KM5075 Date: Sun, 17 Aug 2025 17:22:45 +0900 Subject: [PATCH] Fix minor typo in BinFinder.cs --- src/Microsoft.ML.Core/Utilities/BinFinder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ML.Core/Utilities/BinFinder.cs b/src/Microsoft.ML.Core/Utilities/BinFinder.cs index ed4265f356..b5b3adc699 100644 --- a/src/Microsoft.ML.Core/Utilities/BinFinder.cs +++ b/src/Microsoft.ML.Core/Utilities/BinFinder.cs @@ -555,7 +555,7 @@ internal sealed class DynamicBinFinder : BinFinderBase // the energy for (row, col), we only use energies for (row-1, colPrev) where colPrev <= col. // Thus a single row of values is sufficient. // REVIEW: Consider storing energies in reverse order to match the common access pattern. - // REVEIW: What should we use for the energy type? + // REVIEW: What should we use for the energy type? private EnergyType[] _energies; private EnergyType[] _energiesBest;