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 ```php
$a = 'banana'; $a = 'banana';
$b = 0; $b = 0;
if($a == $b){ if($a === $b){
echo 'This is impossible'; echo 'This is impossible';
} }
else{ else{