Skip to content

Commit

Permalink
fixed spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
aignermax committed Feb 8, 2024
1 parent dc0765f commit a9576fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Connect-A-Pic-Core/Components/FormulaReading/ComplexMath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public static Expression CreateExpressionWithCustomFunctions(string expressionSt
if (name.ToLower() == nameof(ComplexMath.PhaseShiftFromWGLength).ToLower())
{
var wireLength = ConvertToComplex(args.Parameters[0].Evaluate());
var lifhtWaveLength = ConvertToComplex(args.Parameters[1].Evaluate());
args.Result = ComplexMath.PhaseShiftFromWGLength(wireLength.Real, lifhtWaveLength.Real);
var lightWaveLength = ConvertToComplex(args.Parameters[1].Evaluate());
args.Result = ComplexMath.PhaseShiftFromWGLength(wireLength.Real, lightWaveLength.Real);
}
if(name.ToLower() == "pi")
{
Expand Down

0 comments on commit a9576fd

Please sign in to comment.