From 79cae170ba5c6e4f01f45e1e2dbc9687c793cd4a Mon Sep 17 00:00:00 2001 From: superwhiskers Date: Fri, 12 Jul 2024 14:56:36 -0400 Subject: [PATCH] fix a spelling mistake within a comment --- resolve/matrix/Utilities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resolve/matrix/Utilities.cpp b/resolve/matrix/Utilities.cpp index d542bc42..37ccecce 100644 --- a/resolve/matrix/Utilities.cpp +++ b/resolve/matrix/Utilities.cpp @@ -94,7 +94,7 @@ namespace ReSolve // fill stage, approximately O(nnz * m) in the worst case // // all this does is iterate over the nonzeroes in the coo matrix, - // check to see if a value at that colum already exists using binary search, + // check to see if a value at that column already exists using binary search, // and if it does, then insert the new value at that position (deduplicating // the matrix), otherwise, it allocates a new spot in the row (where you see // used[rows[i]]++) and shifts everything over, performing what is effectively