Skip to content

Commit a931fd1

Browse files
committed
Correct copy/paste error.
1 parent 695d62b commit a931fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/diffeqs/validation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function validate(eq::ModelingToolkit.Equation; eqnum = 1)
4040
if err isa Unitful.DimensionError
4141
@warn("In left-hand side of eq. #$eqnum: $(eq.lhs), $(err.x) and $(err.y) are not dimensionally compatible.")
4242
elseif err isa MethodError
43-
@warn("In right-hand side of eq. #$eqnum: $(err.f) doesn't accept $(err.args).")
43+
@warn("In left-hand side of eq. #$eqnum: $(err.f) doesn't accept $(err.args).")
4444
else
4545
rethrow()
4646
end

0 commit comments

Comments
 (0)