summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
authorIan Bertolacci <ian.bertolacci@gmail.com>2015-07-20 12:59:35 -0700
committerIan Bertolacci <ian.bertolacci@gmail.com>2015-07-20 12:59:35 -0700
commit2936ca4c69f7b96dfbe7f67de0ebcad910395ba1 (patch)
tree885e72226ad9258560b09e3fc51954accfe11c96 /chapel.html.markdown
parentd2d98a381047d30e0355a8dacd0fdbe1188345c0 (diff)
Erroneous comment
removed "define mySecondVar as a real" unnecessary and incorrect.
Diffstat (limited to 'chapel.html.markdown')
-rw-r--r--chapel.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapel.html.markdown b/chapel.html.markdown
index 9ce184c0..4cbc5a4b 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -35,7 +35,7 @@ var mySecondVar = myVar;
// var anError; // this would be a compile time error.
// We can (and should) explicitly type things
-var myThirdVar: real; // define mySecondVar as a real
+var myThirdVar: real;
var myFourthVar: real = -1.234;
myThirdVar = myFourthVar;