diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-10-28 17:05:15 +0800 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-10-28 17:05:15 +0800 |
commit | 91db30e578d029cc3313343b6686762b0ac4f9fe (patch) | |
tree | 53b584c0ff9e40f1e1923b82ccaaca57d7f220be | |
parent | b5fb3519729864644566ac00d12a6e5f7e9ef75e (diff) | |
parent | 8e4d294227590194285cec139bae5930d470eaf2 (diff) |
Merge pull request #1760 from jtrestik/chapel
[chapel/en] Fix typos
-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 7252a3e4..866e92d2 100644 --- a/chapel.html.markdown +++ b/chapel.html.markdown @@ -629,7 +629,7 @@ for (i, j) in zip( toThisArray.domain, -100..#5 ){ } writeln( toThisArray ); -// This is all very important in undestanding why the statement +// This is all very important in understanding why the statement // var iterArray : [1..10] int = [ i in 1..10 ] if ( i % 2 == 1 ) then j; // exhibits a runtime error. // Even though the domain of the array and the loop-expression are @@ -914,7 +914,7 @@ proc main(){ [ val in myBigArray ] val = 1 / val; // Parallel operation // Atomic variables, common to many languages, are ones whose operations - // occur uninterupted. Multiple threads can both modify atomic variables + // occur uninterrupted. Multiple threads can both modify atomic variables // and can know that their values are safe. // Chapel atomic variables can be of type bool, int, uint, and real. var uranium: atomic int; |