diff --git a/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts b/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts
index f1fc3b8881..74171fd69d 100644
--- a/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts
+++ b/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts
@@ -133,7 +133,7 @@ export class FacebookGraphApi implements INodeType {
name: 'edge',
type: 'string',
default: '',
- description: 'Edge of the node on which to operate. Edges represent collections of objects wich are attached to the node.',
+ description: 'Edge of the node on which to operate. Edges represent collections of objects which are attached to the node.',
placeholder: 'videos',
required: false,
},
diff --git a/packages/nodes-base/nodes/Flow/FlowTrigger.node.ts b/packages/nodes-base/nodes/Flow/FlowTrigger.node.ts
index 21cdb6eb88..88f07f8299 100644
--- a/packages/nodes-base/nodes/Flow/FlowTrigger.node.ts
+++ b/packages/nodes-base/nodes/Flow/FlowTrigger.node.ts
@@ -99,7 +99,7 @@ export class FlowTrigger implements INodeType {
]
}
},
- description: `Taks ids separated by ,`,
+ description: `Task ids separated by ,`,
},
],
diff --git a/packages/nodes-base/nodes/Google/Sheet/GoogleSheet.ts b/packages/nodes-base/nodes/Google/Sheet/GoogleSheet.ts
index 0766a81f57..9b63a8f4b8 100644
--- a/packages/nodes-base/nodes/Google/Sheet/GoogleSheet.ts
+++ b/packages/nodes-base/nodes/Google/Sheet/GoogleSheet.ts
@@ -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 [];
}
diff --git a/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts b/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts
index d7c82db765..001a617fb9 100644
--- a/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts
+++ b/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts
@@ -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.
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.
The incoming node data is matched to the keys for assignment. The matching is case sensitive.',
},
diff --git a/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts b/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts
index 8627e3b57f..2d0f3b1d25 100644
--- a/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts
@@ -36,7 +36,7 @@ export const opportunityOperations = [
{
name: 'Get All',
value: 'getAll',
- description: 'Get all opportunitys',
+ description: 'Get all opportunities',
},
{
name: 'Get Summary',
diff --git a/packages/nodes-base/nodes/Salesforce/TaskDescription.ts b/packages/nodes-base/nodes/Salesforce/TaskDescription.ts
index 2278785044..6bde264cad 100644
--- a/packages/nodes-base/nodes/Salesforce/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/TaskDescription.ts
@@ -119,7 +119,7 @@ export const taskFields = [
type: 'number',
default: '',
description: `Duration of the call in seconds. Not subject to field-level security,
- available for any user in an organization with Salesforce CRM Call Cente`,
+ available for any user in an organization with Salesforce CRM Call Center`,
},
{
displayName: 'Call Object',
@@ -434,7 +434,7 @@ export const taskFields = [
type: 'number',
default: '',
description: `Duration of the call in seconds. Not subject to field-level security,
- available for any user in an organization with Salesforce CRM Call Cente`,
+ available for any user in an organization with Salesforce CRM Call Center`,
},
{
displayName: 'Call Object',
diff --git a/packages/nodes-base/nodes/Zoom/MeetingDescription.ts b/packages/nodes-base/nodes/Zoom/MeetingDescription.ts
index f412235396..a262f7eb57 100644
--- a/packages/nodes-base/nodes/Zoom/MeetingDescription.ts
+++ b/packages/nodes-base/nodes/Zoom/MeetingDescription.ts
@@ -228,7 +228,7 @@ export const meetingFields = [
type: 'options',
options: [
{
- name: 'Attendees register once and can attend any of the occurences',
+ name: 'Attendees register once and can attend any of the occurrences',
value: 1,
},
{
@@ -479,7 +479,7 @@ export const meetingFields = [
},
options: [
{
- displayName: 'Occurence ID',
+ displayName: 'Occurrence ID',
name: 'occurrenceId',
type: 'string',
default: '',
@@ -672,7 +672,7 @@ export const meetingFields = [
type: 'options',
options: [
{
- name: 'Attendees register once and can attend any of the occurences',
+ name: 'Attendees register once and can attend any of the occurrences',
value: 1,
},
{
diff --git a/packages/nodes-base/nodes/Zoom/WebinarDescription.ts b/packages/nodes-base/nodes/Zoom/WebinarDescription.ts
index 421eb2cf50..62d2297278 100644
--- a/packages/nodes-base/nodes/Zoom/WebinarDescription.ts
+++ b/packages/nodes-base/nodes/Zoom/WebinarDescription.ts
@@ -205,7 +205,7 @@ export const webinarFields = [
type: 'options',
options: [
{
- name: 'Attendees register once and can attend any of the occurences',
+ name: 'Attendees register once and can attend any of the occurrences',
value: 1,
},
{
@@ -308,8 +308,8 @@ export const webinarFields = [
},
options: [
{
- displayName: 'Occurence ID',
- name: 'occurenceId',
+ displayName: 'Occurrence ID',
+ name: 'occurrenceId',
type: 'string',
default: '',
description: 'To view webinar details of a particular occurrence of the recurring webinar.',
diff --git a/packages/nodes-base/nodes/Zoom/Zoom.node.ts b/packages/nodes-base/nodes/Zoom/Zoom.node.ts
index f7ecff0de8..10c773f4c6 100644
--- a/packages/nodes-base/nodes/Zoom/Zoom.node.ts
+++ b/packages/nodes-base/nodes/Zoom/Zoom.node.ts
@@ -544,7 +544,7 @@ export class Zoom implements INodeType {
// 'additionalFields',
// i
// ) as IDataObject;
- // if (additionalFields.occurenceId) {
+ // if (additionalFields.occurrenceId) {
// qs.occurrence_id = additionalFields.occurrenceId as string;
// }
// if (additionalFields.action) {