From e0e67f099d8f4b2aa20b71c0421c872dad65b9de Mon Sep 17 00:00:00 2001 From: msng <29099+msng@users.noreply.github.com> Date: Thu, 25 Aug 2022 23:23:17 +0900 Subject: [PATCH] Update README.md Fixed a comment in the sample code. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f0fbeb2f..4b63d155 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ But most of us are too lazy to check explicitly for every single return of every ```php // This code is incorrect. Twice. -// "file_get_contents" can return false if the file does not exists +// "file_get_contents" can return false if the file does not exist // "json_decode" can return false if the file content is not valid JSON $content = file_get_contents('foobar.json'); $foobar = json_decode($content);