Skip to content

Commit 2972549

Browse files
authored
Remove whitespace and add line break
1 parent d9ad1e9 commit 2972549

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/transform/lineartransform.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ struct LinearTransform{T<:AbstractMatrix{<:Real}} <: Transform
1818
end
1919

2020
function set!(t::LinearTransform{<:AbstractMatrix{T}}, A::AbstractMatrix{T}) where {T<:Real}
21-
size(t.A) == size(A) ||
22-
error("Size of the given matrix $(size(A)) and the transformation matrix $(size(t.A)) are not the same")
21+
size(t.A) == size(A) ||
22+
error("size of the given matrix ", size(A), " and of the transformation matrix ",
23+
size(t.A), " are not the same")
2324
t.A .= A
2425
end
2526

0 commit comments

Comments
 (0)