Skip to content

Commit

Permalink
remove full stops
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanill authored and eliasmpw committed Sep 12, 2023
1 parent 90ad5e1 commit ec9063b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/commands/accounts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Help from '@/plugins/help-plugin/help';
* Displays the help info for the 'accounts' command
*/
export default class Accounts extends Command {
static summary = 'Manages a local keystore with wallets to sign transactions.';
static summary = 'Manages a local keystore with wallets to sign transactions';

public async run(): Promise<void> {
const help = new Help(this.config, { all: true });
Expand Down
2 changes: 1 addition & 1 deletion src/commands/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Help from '@/plugins/help-plugin/help';
* Displays the help info for the 'config' command
*/
export default class Config extends Command {
static summary = 'Display help for the config command.';
static summary = 'Display help for the config command';

/**
* Runs the command.
Expand Down
2 changes: 1 addition & 1 deletion src/commands/contracts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Command } from '@oclif/core';
import Help from '@/plugins/help-plugin/help';

export default class Contracts extends Command {
static summary = 'Display help for the contracts command.';
static summary = 'Display help for the contracts command';

public async run(): Promise<void> {
const help = new Help(this.config, { all: true });
Expand Down
2 changes: 1 addition & 1 deletion src/commands/rewards/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Command } from '@oclif/core';
import Help from '@/plugins/help-plugin/help';

export default class Rewards extends Command {
static summary = 'Display help for the rewards command.';
static summary = 'Display help for the rewards command';

public async run(): Promise<void> {
const help = new Help(this.config, { all: true });
Expand Down

0 comments on commit ec9063b

Please sign in to comment.