From b376e73e10004f250e531a25de730fbc2fb8f436 Mon Sep 17 00:00:00 2001 From: orklah Date: Thu, 3 Dec 2020 23:52:22 +0100 Subject: [PATCH] fix typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c42735..20fc936 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ You can solve this issue in a lot of ways: ```php $a = 'banana'; $b = 0; -if($a == $b){ +if($a === $b){ echo 'This is impossible'; } else{