Skip to content

Commit 23be40f

Browse files
authored
Update solution.md
1 parent 12d40c5 commit 23be40f

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
@@ -8,7 +8,7 @@ class FormatError extends SyntaxError {
88

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

11-
alert( err.message ); // ошибка формата
11+
alert( err.message ); // ошибка форматирования
1212
alert( err.name ); // FormatError
1313
alert( err.stack ); // stack
1414

0 commit comments

Comments
 (0)