Skip to content

Commit

Permalink
fix(command): fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Aug 27, 2020
1 parent 0546e53 commit 2fa9d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/command.ts
Expand Up @@ -932,7 +932,7 @@ export class Command<O = any, A extends Array<any> = any> {
}

if ( args.length ) {
throw this.error( new Error( `To many arguments: ${ args.join( ' ' ) }` ) );
throw this.error( new Error( `Too many arguments: ${ args.join( ' ' ) }` ) );
}
}
}
Expand Down

0 comments on commit 2fa9d29

Please sign in to comment.