summaryrefslogtreecommitdiffhomepage
path: root/php.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2014-01-23 08:42:06 -0800
committerAdam Bard <github@adambard.com>2014-01-23 08:42:06 -0800
commitbb7d69154d2ed3afae1a415942dd59646b65a2d5 (patch)
tree62162307f8cccf8a462cbcb2c2122c18df638c44 /php.html.markdown
parent0524f0479f80943c8ab757af75e1dc2e3456f5ac (diff)
parentbc1571fe271b0a4823a564a303ddc08bf570c12b (diff)
Merge pull request #496 from weakish/master
typo
Diffstat (limited to 'php.html.markdown')
-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.