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 [];
}