summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJakukyo Friel <weakish@gmail.com>2014-01-17 14:38:24 +0800
committerJakukyo Friel <weakish@gmail.com>2014-01-17 14:38:24 +0800
commitae892c802cbd2d62cd205fabe36f303f326683b9 (patch)
treef6990ebb8cc0046f763bb264502ea68fa39cbfb0
parent11f860fce6e8c4ba900769776068c49778d8c1dc (diff)
php: typo
-rw-r--r--php.html.markdown2
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.