From c67ed3ea06d0cbc15ade8c9dd91fc8770adaa934 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 14 Mar 2018 14:35:32 +0200 Subject: [PATCH] Fix typo --- 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 19a1424a..689fc51e 100644 --- a/1-js/08-error-handling/1-try-catch/article.md +++ b/1-js/08-error-handling/1-try-catch/article.md @@ -295,7 +295,7 @@ try { As we can see, that's a `SyntaxError`. -And in our case, the absense of `name` could be treated as a syntax error also, assuming that users must have a `name`. +And in our case, the absence of `name` could be treated as a syntax error also, assuming that users must have a `name`. So let's throw it: