Skip to content

Commit 33d8a16

Browse files
authored
Update solution.md
1 parent d79dad5 commit 33d8a16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/10-error-handling/2-custom-errors/1-format-error

1-js/10-error-handling/2-custom-errors/1-format-error/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class FormatError extends SyntaxError {
66
}
77
}
88

9-
let err = new FormatError("ошибка формата");
9+
let err = new FormatError("ошибка форматирования");
1010

1111
alert( err.message ); // ошибка формата
1212
alert( err.name ); // FormatError

0 commit comments

Comments
 (0)