Merge pull request #1052 from sed-i/patch-1

minor doc fix (QR -> LU)
This commit is contained in:
Sébastien Crozet 2021-12-30 21:46:28 +01:00 committed by GitHub
commit 81f3c6e118
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ where
pub fn is_invertible(&self) -> bool {
assert!(
self.lu.is_square(),
"QR: unable to test the invertibility of a non-square matrix."
"LU: unable to test the invertibility of a non-square matrix."
);
for i in 0..self.lu.nrows() {