diff --git a/src/lang/queryAst.test.ts b/src/lang/queryAst.test.ts index 74d6cf9ca..2039b7ea1 100644 --- a/src/lang/queryAst.test.ts +++ b/src/lang/queryAst.test.ts @@ -819,7 +819,7 @@ profile001 = circle(sketch001, center = [0, 0], radius = 1) ]) }) - it('should return the pipe substition symbol in a variable-less simple profile selection', async () => { + it('should return the pipe substitution symbol in a variable-less simple profile selection', async () => { const circleProfileInVar = `startSketchOn(XY) |> circle(center = [0, 0], radius = 1) ` @@ -906,7 +906,7 @@ profile002 = circle(sketch001, center = [2, 2], radius = 1) ]) }) - it('should return the pipe substition symbol and a variable name in a complex multi profile selection', async () => { + it('should return the pipe substitution symbol and a variable name in a complex multi profile selection', async () => { const circleProfileInVar = `startSketchOn(XY) |> circle(center = [0, 0], radius = 1) profile002 = circle(sketch001, center = [2, 2], radius = 1)