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

@@ -151,7 +151,7 @@ export class InvoiceNinja implements INodeType {
methods = {
loadOptions: {
// Get all the available clients to display them to user so that he can
// Get all the available clients to display them to user so that they can
// select them easily
async getClients(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -166,7 +166,7 @@ export class InvoiceNinja implements INodeType {
}
return returnData;
},
// 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[] = [];
@@ -186,7 +186,7 @@ export class InvoiceNinja implements INodeType {
}
return returnData;
},
// Get all the available invoices to display them to user so that he can
// Get all the available invoices to display them to user so that they can
// select them easily
async getInvoices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -206,7 +206,7 @@ export class InvoiceNinja implements INodeType {
}
return returnData;
},
// Get all the available country codes to display them to user so that he can
// Get all the available country codes to display them to user so that they can
// select them easily
async getCountryCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -220,7 +220,7 @@ export class InvoiceNinja implements INodeType {
}
return returnData;
},
// Get all the available vendors to display them to user so that he can
// Get all the available vendors to display them to user so that they can
// select them easily
async getVendors(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
@@ -235,7 +235,7 @@ export class InvoiceNinja implements INodeType {
}
return returnData;
},
// Get all the available expense categories to display them to user so that he can
// Get all the available expense categories to display them to user so that they can
// select them easily
async getExpenseCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];