summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--php.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/php.html.markdown b/php.html.markdown
index 78d9d1f2..ac0a83b9 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -511,9 +511,9 @@ class MyClass
}
// opposite to __construct()
- // called when object no longer referenced
+ // called when object is no longer referenced
public function __destruct() {
- print "Destroying"
+ print "Destroying";
}
/*