summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIan Bertolacci <ian.bertolacci@gmail.com>2015-08-17 14:19:41 -0700
committerIan Bertolacci <ian.bertolacci@gmail.com>2015-08-17 14:19:41 -0700
commit938720074b8b18a9ada93fb8a040b9ca1a813747 (patch)
treee63f86252379fe8a1e589886f37be24c2ba4c90b
parent2f73cafc7042c92b1358272e6d158f5b1995c15c (diff)
Update to Chapel
A reader/writer sync example was missing a "Reader: " notem
-rw-r--r--chapel.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapel.html.markdown b/chapel.html.markdown
index c8489371..8a88a652 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -960,7 +960,7 @@ proc main(){
begin { // Reader task
writeln( "Reader: waiting to read." );
var read_sync = someSyncVar$;
- writeln( "value is ", read_sync );
+ writeln( "Reader: value is ", read_sync );
}
begin { // Writer task
@@ -1100,4 +1100,4 @@ Notable arguments:
* `--fast`: enables a number of optimizations and disables array bounds checks. Should only enable when application is stable.
* `--set <Symbol Name>=<Value>`: set config param `<Symbol Name>` to `<Value>` at compile-time.
* `--main-module <Module Name>`: use the main() procedure found in the module `<Module Name>` as the executable's main.
- * `--module-dir <Directory>`: includes `<Directory>` in the module search path. \ No newline at end of file
+ * `--module-dir <Directory>`: includes `<Directory>` in the module search path.