Skip to content

Commit

Permalink
Merge pull request #116 from FabianMeul/main
Browse files Browse the repository at this point in the history
fix: type in exceptions.ts
  • Loading branch information
koblas committed Mar 19, 2024
2 parents 05eb9c3 + 8e01a1d commit 29a35e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exceptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class ValidationError extends Error {
* part of the number or required parts are missing.
*/
export class InvalidFormat extends ValidationError {
constructor(msg = 'The number has an invlidad format.') {
constructor(msg = 'The number has an invalid format.') {
super(msg);
this.name = 'InvalidFormat';
}
Expand Down

0 comments on commit 29a35e6

Please sign in to comment.