Spelling, grammar, and related consistency improvements (#1756)

* Spelling, grammar, and word structure improvements

* Email service text reworded to account for the Host Name feature
This commit is contained in:
Domenic Fiore 2023-02-03 19:24:09 -05:00 committed by GitHub
parent e39eabf9a1
commit da9d9424bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 55 additions and 55 deletions

View file

@ -261,14 +261,14 @@ export class ActionFactoryService {
children: [
{
action: Action.AddToWantToReadList,
title: 'Add to Want To Read',
title: 'Add to Want to Read',
callback: this.dummyCallback,
requiresAdmin: false,
children: [],
},
{
action: Action.RemoveFromWantToReadList,
title: 'Remove from Want To Read',
title: 'Remove from Want to Read',
callback: this.dummyCallback,
requiresAdmin: false,
children: [],
@ -564,7 +564,7 @@ export class ActionFactoryService {
if (actions.length === 0) return actionFound;
for (let i = 0; i < actions.length; i++)
for (let i = 0; i < actions.length; i++)
{
if (actions[i].action === action) return true;
if (this.hasAction(actions[i].children, action)) return true;
@ -573,5 +573,5 @@ export class ActionFactoryService {
return actionFound;
}
}