Skip to content

Commit 213fe3c

Browse files
committed
revert some unintended changes
1 parent e679407 commit 213fe3c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/algorithms.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ default_driver(::Type{TA}) where {TA <: YALAPACK.MaybeBlasVecOrMat} = LAPACK()
242242
"""
243243
abstract type TruncationStrategy end
244244
245-
Supertype to denote different strategies for truncated decompositions.
245+
Supertype to denote different strategies for truncated decompositions that are implemented via post-truncation.
246246
247247
See also [`truncate`](@ref)
248248
"""
@@ -593,7 +593,7 @@ macro check_size(x, sz, size = :size)
593593
szx = $size($x)
594594
$err = $msgstart * string(szx) * " instead of expected value " *
595595
string($sz)
596-
(szx == $sz)::Bool || throw(DimensionMismatch($err))
596+
(szx == $sz) || throw(DimensionMismatch($err))
597597
end
598598
)
599599
end

0 commit comments

Comments
 (0)