fix typo in readme

This commit is contained in:
orklah 2020-12-03 23:52:22 +01:00
parent a8896da551
commit b376e73e10

View File

@ -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{