diff options
Diffstat (limited to 'chapel.html.markdown')
| -rw-r--r-- | chapel.html.markdown | 4 | 
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. | 
