Skip to content

Commit 3a137d6

Browse files
committed
apply formatter
1 parent 3466dee commit 3a137d6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ModelingToolkit.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -233,25 +233,25 @@ PrecompileTools.@compile_workload begin
233233
end
234234
if structp
235235
@variables begin
236-
x(t) = 0.0, [description="foo", guess=1.0]
236+
x(t) = 0.0, [description = "foo", guess = 1.0]
237237
end
238238
else
239239
@variables begin
240-
x(t) = 0.0, [description="foo w/o structp", guess=1.0]
240+
x(t) = 0.0, [description = "foo w/o structp", guess = 1.0]
241241
end
242242
end
243243
@parameters begin
244-
a = 1.0, [description="bar"]
244+
a = 1.0, [description = "bar"]
245245
if structp
246-
b=2*a, [description="if"]
246+
b = 2 * a, [description = "if"]
247247
else
248248
c
249249
end
250250
end
251251
@equations begin
252252
x ~ a + b
253253
end
254-
end;
254+
end
255255
end
256256

257257
export AbstractTimeDependentSystem,

0 commit comments

Comments
 (0)