Merge pull request #459 from Vizantiyec/patch-1

typo absense -> absence
This commit is contained in:
Ilya Kantor 2017-03-26 22:39:45 +03:00 committed by GitHub
commit a22c2a3d29

View file

@ -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. To unify error handling, we'll use `throw` operator.