From 3d0d7b4fd39901765a72207e4d24ac07e0e35dbe Mon Sep 17 00:00:00 2001 From: Harvey Zack Date: Wed, 27 Feb 2019 17:44:19 +0800 Subject: [PATCH] Update article.md --- 1-js/08-error-handling/1-try-catch/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/08-error-handling/1-try-catch/article.md b/1-js/08-error-handling/1-try-catch/article.md index 900de4fd72..696ec18247 100644 --- a/1-js/08-error-handling/1-try-catch/article.md +++ b/1-js/08-error-handling/1-try-catch/article.md @@ -308,7 +308,7 @@ try { if (!user.name) { *!* - 抛出 new SyntaxError("Incomplete data: no name"); // (*) + throw new SyntaxError("Incomplete data: no name"); // (*) */!* }