From 2a2db25a6667b2b078390e9ddfadad8c367839ee Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 7 Feb 2014 10:15:39 -0500 Subject: [PATCH] Fix a typo. --- src/Linear/QR.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Linear/QR.hs b/src/Linear/QR.hs index 13782c4..043b172 100644 --- a/src/Linear/QR.hs +++ b/src/Linear/QR.hs @@ -155,7 +155,7 @@ qr matrix = ifoldl (f col_idx) (q,r) col -- | Process the entries in a column, doing basically the same - -- thing as col_dunction does. It updates the QR factorization, + -- thing as col_function does. It updates the QR factorization, -- maybe, and returns the current one. f col_idx (q,r) idx _ -- ignore the current element | idx <= col_idx = (q,r) -- leave it alone -- 2.43.2