Skip to content

Commit 5edf434

Browse files
Merge pull request #1090 from SciML/fix-formatter-line-splits
Fix function call line split following Catalyst.jl PR #1306
2 parents fb73106 + d05e2da commit 5edf434

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/debug.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ expression. Two common reasons for this issue are:
5858

5959
function __init__()
6060
Base.Experimental.register_error_hint(DomainError) do io, e
61-
if e isa DomainError &&
62-
occursin(
63-
"will only return a complex result if called with a complex argument. Try ",
64-
e.msg)
61+
if e isa DomainError && occursin("will only return a complex result if called with a complex argument. Try ", e.msg)
6562
println(io, DOMAINERROR_COMPLEX_MSG)
6663
end
6764
end

0 commit comments

Comments
 (0)