From aa18e7301c66eec70c40c11ed043205c78bbf3ab Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 27 Jun 2013 18:13:02 -0700 Subject: edits --- php.html.markdown | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/php.html.markdown b/php.html.markdown index 33bf2859..753f6ab1 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -159,7 +159,7 @@ $a > $b // TRUE if $a is strictly greater than $b. $a <= $b // TRUE if $a is less than or equal to $b. $a >= $b // TRUE if $a is greater than or equal to $b. -// The following will only be true the values match and they are the same type. +// The following will only be true if the values match and are the same type. $a === $b // TRUE if $a is equal to $b, and they are of the same type. $a !== $b // TRUE if $a is not equal to $b, or they are not of the same type. 1 == '1' // TRUE @@ -334,8 +334,8 @@ number of letters, numbers, or underscores. There are three ways to declare func ```php