diff --git a/source/_posts/2018/2018-08-16-whats-new-in-php-73-in-30-seconds-in-diffs.md b/source/_posts/2018/2018-08-16-whats-new-in-php-73-in-30-seconds-in-diffs.md index 9222e5bc60a..cbb13bcc4e7 100644 --- a/source/_posts/2018/2018-08-16-whats-new-in-php-73-in-30-seconds-in-diffs.md +++ b/source/_posts/2018/2018-08-16-whats-new-in-php-73-in-30-seconds-in-diffs.md @@ -140,7 +140,7 @@ But in case of that smelly (3rd party) code, there is a help: +json_decode($json, null, null, JSON_THROW_ON_ERROR); ``` -So you'll be able to: +So you'll be able to do: ```php try { @@ -150,7 +150,7 @@ try { } ``` -I use similar technique for years thanks to [Nette\Utils](https://doc.nette.org/en/2.4/json) and I've never complaint: +I've used similar technique for years thanks to [Nette\Utils](https://doc.nette.org/en/2.4/json) and I've never complained: ```php -Did I miss a feature you plan to use from day 1 of your PHP 7.3? I might too, drop it in comments! \ No newline at end of file +Did I miss a feature you plan to use from day 1 of your PHP 7.3? I might too, drop it in the comments!