Skip to content

Commit 11bc4f4

Browse files
committed
Add missing brackets
1 parent c7a3b00 commit 11bc4f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utility/svd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ function _svd_trunc!(
145145
trunc::TruncationStrategy,
146146
)
147147
U, S, V⁺ = svd_compact!(t; alg)
148-
Ũ, S̃, Ṽ⁺, ind = truncate(svd_trunc!, (U, S, V⁺), trunc)
148+
(Ũ, S̃, Ṽ⁺), ind = truncate(svd_trunc!, (U, S, V⁺), trunc)
149149
truncerror = MatrixAlgebraKit.truncation_error(diagview(S), ind)
150150

151151
# construct info NamedTuple

0 commit comments

Comments
 (0)