Skip to content

Commit 1892f0a

Browse files
refactor: format
1 parent 6632a29 commit 1892f0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/systems/abstractsystem.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3335,7 +3335,8 @@ function parse_variable(sys::AbstractSystem, str::AbstractString)
33353335
# I'd write a regex to validate `str`, but https://xkcd.com/1171/
33363336
str = strip(str)
33373337
derivative_level = 0
3338-
while ((cond1 = startswith(str, "D(")) || startswith(str, "Differential(")) && endswith(str, ")")
3338+
while ((cond1 = startswith(str, "D(")) || startswith(str, "Differential(")) &&
3339+
endswith(str, ")")
33393340
if cond1
33403341
derivative_level += 1
33413342
str = _string_view_inner(str, 2, 1)

0 commit comments

Comments
 (0)