From 269ebde6f0518722e856898230ae4922beac38af Mon Sep 17 00:00:00 2001 From: Vizantiyec Date: Wed, 1 Mar 2017 12:27:05 +0200 Subject: [PATCH] typo absense -> absence 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 afd9c674..21372f57 100644 --- a/1-js/08-error-handling/1-try-catch/article.md +++ b/1-js/08-error-handling/1-try-catch/article.md @@ -243,7 +243,7 @@ try { } ``` -Here `JSON.parse` runs normally, but the absense of `"name"` is actually an error for us. +Here `JSON.parse` runs normally, but the absence of `"name"` is actually an error for us. To unify error handling, we'll use `throw` operator.