Skip to content

Commit 4448b07

Browse files
committed
Fix typo
1 parent e53f0c3 commit 4448b07

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/implementations/orthnull.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ function right_orth!(A, CVᴴ; trunc=nothing,
130130
throw(ArgumentError("truncation not supported for right_orth with kind=$kind"))
131131
end
132132
if kind == :lq
133-
return right_orth_lq!(A, CVᴴ, alg)
133+
return right_orth_lq!(A, CVᴴ, alg_lq)
134134
elseif kind == :polar
135-
return right_orth_polar!(A, CVᴴ, alg)
135+
return right_orth_polar!(A, CVᴴ, alg_polar)
136136
elseif kind == :svd
137-
return right_orth_svd!(A, CVᴴ, alg, trunc)
137+
return right_orth_svd!(A, CVᴴ, alg_svd, trunc)
138138
else
139139
throw(ArgumentError("`right_orth!` received unknown value `kind = $kind`"))
140140
end

0 commit comments

Comments
 (0)