diff --git a/packages/core/test/Helpers.ts b/packages/core/test/Helpers.ts index 8c4cb22a8b..c38362b827 100644 --- a/packages/core/test/Helpers.ts +++ b/packages/core/test/Helpers.ts @@ -287,12 +287,12 @@ class NodeTypesClass implements INodeTypes { options: [ { name: 'ALL', - description: 'Only if all conditions are meet it goes into "true" branch.', + description: 'Only if all conditions are met it goes into "true" branch.', value: 'all', }, { name: 'ANY', - description: 'If any of the conditions is meet it goes into "true" branch.', + description: 'If any of the conditions is met it goes into "true" branch.', value: 'any', }, ], diff --git a/packages/nodes-base/nodes/If/If.node.ts b/packages/nodes-base/nodes/If/If.node.ts index f437e8934e..96b016f74b 100644 --- a/packages/nodes-base/nodes/If/If.node.ts +++ b/packages/nodes-base/nodes/If/If.node.ts @@ -290,12 +290,12 @@ export class If implements INodeType { options: [ { name: 'ALL', - description: 'Only if all conditions are meet it goes into "true" branch', + description: 'Only if all conditions are met it goes into "true" branch', value: 'all', }, { name: 'ANY', - description: 'If any of the conditions is meet it goes into "true" branch', + description: 'If any of the conditions is met it goes into "true" branch', value: 'any', }, ],