Skip to content

Commit cd768c0

Browse files
authored
Merge pull request #139 from SciML/fb/namespacetypo
fix typo in namespacing
2 parents c71da1d + b8a30f0 commit cd768c0

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
@@ -410,8 +410,8 @@ function ModelingToolkit.linearization_function(sys::ModelingToolkit.AbstractSys
410410
permutation_u = _check_and_sort!(input_name, aps_u, namespace_u, multiplicities_u)
411411
permutation_y = _check_and_sort!(output_name, aps_y, namespace_y, multiplicities_y)
412412

413-
yn = ModelingToolkit.renamespace.(namespace_u, y) # permutation applied in _check_and_sort
414-
un = ModelingToolkit.renamespace.(namespace_y, u)
413+
yn = ModelingToolkit.renamespace.(namespace_y, y) # permutation applied in _check_and_sort
414+
un = ModelingToolkit.renamespace.(namespace_u, u)
415415
ModelingToolkit.linearization_function(sys, un, yn; kwargs...)
416416
end
417417

0 commit comments

Comments
 (0)