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

@@ -586,7 +586,7 @@ export class TodoistV2 implements INodeType {
},
},
loadOptions: {
// Get all the available projects to display them to user so that he can
// Get all the available projects to display them to user so that they can
// select them easily
async getProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -605,7 +605,7 @@ export class TodoistV2 implements INodeType {
},
// Get all the available sections in the selected project, to display them
// to user so that he can select one easily
// to user so that they can select one easily
async getSections(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -675,7 +675,7 @@ export class TodoistV2 implements INodeType {
return returnData;
},
// Get all the available labels to display them to user so that he can
// Get all the available labels to display them to user so that they can
// select them easily
async getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];