From b586ec812f86cabdbd647f77be61935d466f73c3 Mon Sep 17 00:00:00 2001 From: Cornelius Suermann Date: Mon, 27 Jun 2022 15:09:59 +0200 Subject: [PATCH] :pencil2: fix typo --- nodes/ExampleNode/ExampleNode.node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/ExampleNode/ExampleNode.node.ts b/nodes/ExampleNode/ExampleNode.node.ts index 9d471db..3bbadf4 100644 --- a/nodes/ExampleNode/ExampleNode.node.ts +++ b/nodes/ExampleNode/ExampleNode.node.ts @@ -34,7 +34,7 @@ export class ExampleNode implements INodeType { let item: INodeExecutionData; let myString: string; - // Itterates over all input items and add the key "myString" with the + // Iterates over all input items and add the key "myString" with the // value the parameter "myString" resolves to. // (This could be a different value for each item in case it contains an expression) for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {