Browse Source

Fix typo in error message

pull/16/head
Olav Møyner 3 years ago
parent
commit
f4e6bfb34d
  1. 2
      src/HYPRE.jl

2
src/HYPRE.jl

@ -539,7 +539,7 @@ function Internals.copy_check(dst::HYPREVector, src::PVector)
if il_dst != il_src && iu_dst != iu_src if il_dst != il_src && iu_dst != iu_src
# TODO: Why require this? # TODO: Why require this?
throw(ArgumentError( throw(ArgumentError(
"row owner mismatch between dst ($(il_dst:iu_dst)) and src ($(il_dst:iu_dst))" "row owner mismatch between dst ($(il_dst:iu_dst)) and src ($(il_src:iu_src))"
)) ))
end end
end end

Loading…
Cancel
Save