Skip to content

Commit d90d02b

Browse files
Update analysis_points.jl
1 parent 3054252 commit d90d02b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/systems/analysis_points.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ function apply_transformation(tf::GetInput, sys::AbstractSystem)
533533
ap_idx = analysis_point_index(ap_sys, tf.ap)
534534
ap_idx === nothing &&
535535
error("Analysis point $(nameof(tf.ap)) not found in system $(nameof(sys)).")
536-
# get the anlysis point
536+
# get the analysis point
537537
ap_sys_eqs = get_eqs(ap_sys)
538538
ap = ap_sys_eqs[ap_idx].rhs
539539

@@ -587,7 +587,7 @@ function apply_transformation(tf::PerturbOutput, sys::AbstractSystem)
587587
ap_idx = analysis_point_index(ap_sys, tf.ap)
588588
ap_idx === nothing &&
589589
error("Analysis point $(nameof(tf.ap)) not found in system $(nameof(sys)).")
590-
# modified quations
590+
# modified equations
591591
ap_sys_eqs = copy(get_eqs(ap_sys))
592592
@set! ap_sys.eqs = ap_sys_eqs
593593
ap = ap_sys_eqs[ap_idx].rhs
@@ -899,7 +899,7 @@ result of `apply_transformation`.
899899
# Keyword Arguments
900900
901901
- `system_modifier`: a function which takes the modified system and returns a new system
902-
with any required further modifications peformed.
902+
with any required further modifications performed.
903903
"""
904904
function open_loop(sys, ap::Union{Symbol, AnalysisPoint}; system_modifier = identity)
905905
ap = only(canonicalize_ap(sys, ap))

0 commit comments

Comments
 (0)