1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-07-13 11:36:19 +02:00

More proofreading

This commit is contained in:
Andrew Davis
2018-12-26 19:10:58 -06:00
parent dc296aef34
commit 8970e4a0ce
3 changed files with 9 additions and 3 deletions

View File

@ -14,7 +14,7 @@ $a && $b;
$a && $c;
// Using two pipe characters checks if either value is true.
// Then, it will return true. If both values are false, the PHP
// Then, it will return true. If both values are false, then PHP
// returns false.
$a = true;
$b = false;