diff --git a/README.md b/README.md index 7da4002..d473620 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ $isJson = is_json('{"foo":1,"bar":2,"baz":3}'); // true ``` -Boolean is returned by default, however, function can return decoded json, if you pass the second `return` argument as `true`: +Function can return decoded json, if you pass the second `return` argument as `true`: ```php $decoded = is_json('{"foo":1,"bar":2,"baz":3}', true);