diff options
author | Marko Stanković <sm4rk0@users.noreply.github.com> | 2015-05-20 14:29:05 +0200 |
---|---|---|
committer | Marko Stanković <sm4rk0@users.noreply.github.com> | 2015-05-20 14:29:05 +0200 |
commit | 5816b59be65d47e6377cdad4c72b89f683bd0632 (patch) | |
tree | e6960ce20ccba3dd22ee3226ed9b195b89870e78 /haxe.html.markdown | |
parent | 982b98468467c7a85f790fdcea2ff8d425b173de (diff) |
[haxe/en] Adding colon after comments
...as per @vendethiel's advice
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r-- | haxe.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index bbe51c79..ee214540 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -495,9 +495,9 @@ class LearnHaxe3{ // foo_instance.public_read = 4; // this will throw an error if uncommented: // trace(foo_instance.public_write); // as will this. - // calls the toString method + // calls the toString method: trace(foo_instance + " is the value for foo_instance"); - // same thing + // same thing: trace(foo_instance.toString() + " is the value for foo_instance.toString()"); @@ -536,7 +536,7 @@ class FooClass extends BarClass implements BarInterface{ // a public constructor public function new(arg:Int){ - // call the constructor of the parent object, since we extended BarClass + // call the constructor of the parent object, since we extended BarClass: super(); this.public_any = 0; |