summaryrefslogtreecommitdiff
path: root/Zend/tests/closure_044.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/closure_044.phpt')
-rw-r--r--Zend/tests/closure_044.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/closure_044.phpt b/Zend/tests/closure_044.phpt
index d2644c040..8fdef135d 100644
--- a/Zend/tests/closure_044.phpt
+++ b/Zend/tests/closure_044.phpt
@@ -3,7 +3,7 @@ Closure 044: Scope/bounding combination invariants; non static closures
--FILE--
<?php
/* A non-static closure has a bound instance if it has a scope
- * and does't have an instance if it has no scope */
+ * and doesn't have an instance if it has no scope */
$nonstaticUnscoped = function () { var_dump(isset(A::$priv)); var_dump(isset($this)); };