Skip to content

Commit 95fd7ff

Browse files
authored
Missing space in error message (#554)
1 parent b8a13ef commit 95fd7ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/umfpack.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ lu(A::AbstractSparseMatrixCSC{<:Union{ComplexF16,ComplexF32},Ti};
397397
lu(convert(SparseMatrixCSC{ComplexF64,Ti}, A); check = check)
398398
lu(A::Union{AbstractSparseMatrixCSC{T},AbstractSparseMatrixCSC{Complex{T}}};
399399
check::Bool = true) where {T<:AbstractFloat} =
400-
throw(ArgumentError(string("matrix type ", typeof(A), "not supported. ",
400+
throw(ArgumentError(string("matrix type ", typeof(A), " not supported. ",
401401
"Try lu(convert(SparseMatrixCSC{Float64/ComplexF64,Int}, A)) for ",
402402
"sparse floating point LU using UMFPACK or lu(Array(A)) for generic ",
403403
"dense LU.")))

0 commit comments

Comments
 (0)