From: Michael Orlitzky Date: Fri, 7 Feb 2014 15:15:39 +0000 (-0500) Subject: Fix a typo. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=commitdiff_plain;h=2a2db25a6667b2b078390e9ddfadad8c367839ee Fix a typo. --- 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