1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-21 01:47:36 +03:00

fix: Typo fixes in various descriptions (no-changelog) (#8854)

Signed-off-by: pengqiseven <912170095@qq.com>
Co-authored-by: pengqiseven <i@sohu.com>
This commit is contained in:
pengqiseven 2024-04-29 16:06:32 +08:00 committed by GitHub
parent a424b59e49
commit 8a26f4280a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 27 additions and 27 deletions

View File

@ -203,7 +203,7 @@ export class ActiveWorkflowRunner {
);
}
// if it's a workflow from the the insert
// if it's a workflow from the insert
// TODO check if there is standard error code for duplicate key violation that works
// with all databases
if (error instanceof Error && error.name === 'QueryFailedError') {

View File

@ -283,7 +283,7 @@ export class Chargebee implements INodeType {
},
],
default: 'after',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Date',
@ -330,7 +330,7 @@ export class Chargebee implements INodeType {
},
],
default: 'gt',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Amount',

View File

@ -65,7 +65,7 @@ export class FilterV1 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -104,7 +104,7 @@ export class FilterV1 implements INodeType {
},
],
default: 'after',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -167,7 +167,7 @@ export class FilterV1 implements INodeType {
},
],
default: 'smaller',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -251,7 +251,7 @@ export class FilterV1 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',

View File

@ -462,7 +462,7 @@ export class GoogleSheet {
/**
* Looks for a specific value in a column and if it gets found it returns the whole row
*
* @param {string[][]} inputData Data to to check for lookup value in
* @param {string[][]} inputData Data to check for lookup value in
* @param {number} keyRowIndex Index of the row which contains the keys
* @param {number} dataStartRowIndex Index of the first row which contains data
* @param {ILookupValues[]} lookupValues The lookup values which decide what data to return

View File

@ -612,7 +612,7 @@ export class GoogleSheet {
/**
* Looks for a specific value in a column and if it gets found it returns the whole row
*
* @param {string[][]} inputData Data to to check for lookup value in
* @param {string[][]} inputData Data to check for lookup value in
* @param {number} keyRowIndex Index of the row which contains the keys
* @param {number} dataStartRowIndex Index of the first row which contains data
* @param {ILookupValues[]} lookupValues The lookup values which decide what data to return

View File

@ -85,7 +85,7 @@ export class Hunter implements INodeType {
},
},
default: true,
description: 'Whether to return only the the found emails',
description: 'Whether to return only the found emails',
},
{
displayName: 'Return All',

View File

@ -66,7 +66,7 @@ export class IfV1 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -105,7 +105,7 @@ export class IfV1 implements INodeType {
},
],
default: 'after',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -168,7 +168,7 @@ export class IfV1 implements INodeType {
},
],
default: 'smaller',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -252,7 +252,7 @@ export class IfV1 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',

View File

@ -51,7 +51,7 @@ export class Kafka implements INodeType {
name: 'sendInputData',
type: 'boolean',
default: true,
description: 'Whether to send the the data the node receives as JSON to Kafka',
description: 'Whether to send the data the node receives as JSON to Kafka',
},
{
displayName: 'Message',

View File

@ -46,7 +46,7 @@ export class Mqtt implements INodeType {
name: 'sendInputData',
type: 'boolean',
default: true,
description: 'Whether to send the the data the node receives as JSON',
description: 'Whether to send the data the node receives as JSON',
},
{
displayName: 'Message',

View File

@ -51,7 +51,7 @@ export async function mauticApiRequest(
}
if (returnData.errors) {
// They seem to to sometimes return 200 status but still error.
// They seem to sometimes return 200 status but still error.
throw new NodeApiError(this.getNode(), returnData as JsonObject);
}

View File

@ -136,7 +136,7 @@ export const boardItemFields: INodeProperties[] = [
operation: ['changeColumnValue'],
},
},
description: 'The unique identifier of the item to to change column of',
description: 'The unique identifier of the item to change column of',
},
{
displayName: 'Column Name or ID',

View File

@ -223,7 +223,7 @@ export class RabbitMQ implements INodeType {
},
},
default: true,
description: 'Whether to send the the data the node receives as JSON',
description: 'Whether to send the data the node receives as JSON',
},
{
displayName: 'Message',

View File

@ -151,7 +151,7 @@ export class SwitchV1 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -229,7 +229,7 @@ export class SwitchV1 implements INodeType {
},
],
default: 'after',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -323,7 +323,7 @@ export class SwitchV1 implements INodeType {
},
],
default: 'smaller',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -433,7 +433,7 @@ export class SwitchV1 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',

View File

@ -182,7 +182,7 @@ export class SwitchV2 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -257,7 +257,7 @@ export class SwitchV2 implements INodeType {
},
],
default: 'after',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -348,7 +348,7 @@ export class SwitchV2 implements INodeType {
},
],
default: 'smaller',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',
@ -455,7 +455,7 @@ export class SwitchV2 implements INodeType {
},
],
default: 'equal',
description: 'Operation to decide where the the data should be mapped to',
description: 'Operation to decide where the data should be mapped to',
},
{
displayName: 'Value 2',