Skip to content

Commit 6a837a8

Browse files
fix spelling error
1 parent e987a99 commit 6a837a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Blocks/analysis_points.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ function ModelingToolkit.linearization_function(sys::ModelingToolkit.AbstractSys
440440
push!(multiplicities_u, length(ui)) # one ap may yield several new vars
441441
append!(u, ui)
442442
if loop_openings !== nothing && ap.name loop_openings
443-
# In thise case, we break the existing connection.
443+
# In this case, we break the existing connection.
444444
[ap_var(ap.out) .~ ui;], ui
445445
else
446446
[ap_var(ap.out) .~ ap_var(ap.in) + ui;], ui
@@ -454,7 +454,7 @@ function ModelingToolkit.linearization_function(sys::ModelingToolkit.AbstractSys
454454
append!(y, yi)
455455
if loop_openings !== nothing && ap.name loop_openings
456456
[ap_var(ap.in) .~ yi;
457-
ap_var(ap.out) .~ 0], yi # In thise case, we break the existing connection.
457+
ap_var(ap.out) .~ 0], yi # In this case, we break the existing connection.
458458
else
459459
[ap_var(ap.in) .~ yi;
460460
ap_var(ap.out) .~ ap_var(ap.in)], yi

0 commit comments

Comments
 (0)