Skip to content

Commit 3ab98b4

Browse files
committed
Formatting after rebase
1 parent a0d7454 commit 3ab98b4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/src/basics/MTKModel_Connector.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ getdefault(model_c3.model_a.k_array[2])
179179

180180
- List all the equations here
181181

182-
183182
#### `@defaults` begin block
184183

185184
- Default values can be passed as pairs.

src/systems/model_parsing.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ function _model_macro(mod, name, expr, isconnector)
120120

121121
!(c_evts == []) && push!(exprs.args,
122122
:($Setfield.@set!(var"#___sys___".continuous_events=$SymbolicContinuousCallback.([
123-
$(c_evts...),
123+
$(c_evts...)
124124
]))))
125125

126126
!(d_evts == []) && push!(exprs.args,
127127
:($Setfield.@set!(var"#___sys___".discrete_events=$SymbolicDiscreteCallback.([
128-
$(d_evts...),
128+
$(d_evts...)
129129
]))))
130130

131131
f = if length(where_types) == 0

0 commit comments

Comments
 (0)