diff options
author | Jakukyo Friel <weakish@gmail.com> | 2014-01-17 14:38:24 +0800 |
---|---|---|
committer | Jakukyo Friel <weakish@gmail.com> | 2014-01-17 14:38:24 +0800 |
commit | ae892c802cbd2d62cd205fabe36f303f326683b9 (patch) | |
tree | f6990ebb8cc0046f763bb264502ea68fa39cbfb0 /php.html.markdown | |
parent | 11f860fce6e8c4ba900769776068c49778d8c1dc (diff) |
php: typo
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown index c3317d59..e1bb86a0 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -212,7 +212,7 @@ assert($c >= $d); // The following will only be true if the values match and are the same type. assert($c === $d); assert($a !== $d); -assert(1 == '1'); +assert(1 === '1'); assert(1 !== '1'); // Variables can be converted between types, depending on their usage. |