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

@@ -221,7 +221,7 @@ export class ClickUp implements INodeType {
methods = {
loadOptions: {
// Get all the available teams to display them to user so that he can
// Get all the available teams to display them to user so that they can
// select them easily
async getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -236,7 +236,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available spaces to display them to user so that he can
// Get all the available spaces to display them to user so that they can
// select them easily
async getSpaces(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const teamId = this.getCurrentNodeParameter('team') as string;
@@ -252,7 +252,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available folders to display them to user so that he can
// Get all the available folders to display them to user so that they can
// select them easily
async getFolders(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const spaceId = this.getCurrentNodeParameter('space') as string;
@@ -268,7 +268,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available lists to display them to user so that he can
// Get all the available lists to display them to user so that they can
// select them easily
async getLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const folderId = this.getCurrentNodeParameter('folder') as string;
@@ -284,7 +284,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available lists without a folder to display them to user so that he can
// Get all the available lists without a folder to display them to user so that they can
// select them easily
async getFolderlessLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const spaceId = this.getCurrentNodeParameter('space') as string;
@@ -300,7 +300,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available assignees to display them to user so that he can
// Get all the available assignees to display them to user so that they can
// select them easily
async getAssignees(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const listId = this.getCurrentNodeParameter('list') as string;
@@ -326,7 +326,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available tags to display them to user so that he can
// Get all the available tags to display them to user so that they can
// select them easily
async getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const spaceId = this.getCurrentNodeParameter('space') as string;
@@ -342,7 +342,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available tags to display them to user so that he can
// Get all the available tags to display them to user so that they can
// select them easily
async getTimeEntryTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const teamId = this.getCurrentNodeParameter('team') as string;
@@ -362,7 +362,7 @@ export class ClickUp implements INodeType {
}
return returnData;
},
// Get all the available tags to display them to user so that he can
// Get all the available tags to display them to user so that they can
// select them easily
async getStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const listId = this.getCurrentNodeParameter('list') as string;
@@ -379,7 +379,7 @@ export class ClickUp implements INodeType {
return returnData;
},
// Get all the custom fields to display them to user so that he can
// Get all the custom fields to display them to user so that they can
// select them easily
async getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const listId = this.getCurrentNodeParameter('list') as string;
@@ -396,7 +396,7 @@ export class ClickUp implements INodeType {
return returnData;
},
// Get all the available lists to display them to user so that he can
// Get all the available lists to display them to user so that they can
// select them easily
async getTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const listId = this.getCurrentNodeParameter('list') as string;