summaryrefslogtreecommitdiffhomepage
path: root/haxe.html.markdown
diff options
context:
space:
mode:
authorCameron Steele <cameronsteele@steelecameron.com>2014-12-29 15:00:12 -0800
committerCameron Steele <cameronsteele@steelecameron.com>2014-12-29 15:00:12 -0800
commit228cc6ec5ae0d20a94292c66cf43e44755d3758b (patch)
tree6c627937c7719a54e29592ab8924cf62f72e1d76 /haxe.html.markdown
parent1c52c5ea125285eb8a3af5cf4cb510e9c3e7a49b (diff)
typo in Haxe documentation
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r--haxe.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown
index 6a868f09..8599de8d 100644
--- a/haxe.html.markdown
+++ b/haxe.html.markdown
@@ -484,7 +484,7 @@ class LearnHaxe3{
// we can read this variable
trace(foo_instance.public_read + " is the value for foo_instance.public_read");
// but not write it
- // foo_instance.public_write = 4; // this will throw an error if uncommented:
+ // foo_instance.public_read = 4; // this will throw an error if uncommented:
// trace(foo_instance.public_write); // as will this.
trace(foo_instance + " is the value for foo_instance"); // calls the toString method