docs: Stop assuming the user's gender in code comments (no-changelog) (#6015)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-04-19 16:00:49 +02:00
committed by GitHub
parent 9817a15da4
commit c87262a312
95 changed files with 306 additions and 306 deletions

View File

@@ -80,7 +80,7 @@ export class MicrosoftTeams implements INodeType {
methods = {
loadOptions: {
// Get all the team's channels to display them to user so that he can
// Get all the team's channels to display them to user so that they can
// select them easily
async getChannels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -100,7 +100,7 @@ export class MicrosoftTeams implements INodeType {
}
return returnData;
},
// Get all the teams to display them to user so that he can
// Get all the teams to display them to user so that they can
// select them easily
async getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -115,7 +115,7 @@ export class MicrosoftTeams implements INodeType {
}
return returnData;
},
// Get all the groups to display them to user so that he can
// Get all the groups to display them to user so that they can
// select them easily
async getGroups(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -134,7 +134,7 @@ export class MicrosoftTeams implements INodeType {
}
return returnData;
},
// Get all the plans to display them to user so that he can
// Get all the plans to display them to user so that they can
// select them easily
async getPlans(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -157,7 +157,7 @@ export class MicrosoftTeams implements INodeType {
}
return returnData;
},
// Get all the plans to display them to user so that he can
// Get all the plans to display them to user so that they can
// select them easily
async getBuckets(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -180,7 +180,7 @@ export class MicrosoftTeams implements INodeType {
}
return returnData;
},
// Get all the plans to display them to user so that he can
// Get all the plans to display them to user so that they can
// select them easily
async getMembers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -203,7 +203,7 @@ export class MicrosoftTeams implements INodeType {
}
return returnData;
},
// Get all the labels to display them to user so that he can
// Get all the labels to display them to user so that they can
// select them easily
async getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];