summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAkshay Kalose <AkshayProductions@gmail.com>2015-10-18 17:37:39 -0400
committerAkshay Kalose <AkshayProductions@gmail.com>2015-10-18 17:37:39 -0400
commitd9f3b13e278eebb173253c756ffe847b3188f4af (patch)
tree9490d65439d63b770325e5cf65eb840052d63943
parent64aa38a1d28d6e3b9f770e97476f0111f180bd3e (diff)
Fix Grammar and Syntax
-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";
}
/*