typo absense -> absence

Typo
This commit is contained in:
Vizantiyec 2017-03-01 12:27:05 +02:00 committed by GitHub
parent 508969c13f
commit 269ebde6f0

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.