Fixed spelling mistakes (#814)

* Fixed spelling mistakes

* Fixed spelling

* Edited spelling mistakes
This commit is contained in:
Jason
2020-08-04 11:35:28 +02:00
committed by GitHub
parent f8d216b2be
commit 6cbe59f686
9 changed files with 17 additions and 17 deletions

View File

@@ -181,7 +181,7 @@ export class GoogleSheet {
}
/**
* Returns the given sheet data in a strucutred way
* Returns the given sheet data in a structured way
*/
structureData(inputData: string[][], startRow: number, keys: string[], addEmpty?: boolean): IDataObject[] {
const returnData = [];
@@ -208,7 +208,7 @@ export class GoogleSheet {
/**
* Returns the given sheet data in a strucutred way using
* Returns the given sheet data in a structured way using
* the startRow as the one with the name of the key
*/
structureArrayDataByColumn(inputData: string[][], keyRow: number, dataStartRow: number): IDataObject[] {
@@ -216,7 +216,7 @@ export class GoogleSheet {
const keys: string[] = [];
if (keyRow < 0 || dataStartRow < keyRow || keyRow >= inputData.length) {
// The key row does not exist so it is not possible to strucutre data
// The key row does not exist so it is not possible to structure data
return [];
}

View File

@@ -151,7 +151,7 @@ export class GoogleSheets implements INodeType {
displayName: 'To Delete',
name: 'toDelete',
placeholder: 'Add Columns/Rows to delete',
description: 'Deletes colums and rows from a sheet.',
description: 'Deletes columns and rows from a sheet.',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -363,7 +363,7 @@ export class GoogleSheets implements INodeType {
},
},
default: 0,
description: 'Index of the row which contains the keys. Starts at 0.<br />The incoming node data is matched to the keys for assignment. The matching is case sensitve.',
description: 'Index of the row which contains the keys. Starts at 0.<br />The incoming node data is matched to the keys for assignment. The matching is case sensitive.',
},