summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
authorHairyFotr <hairyfotr@gmail.com>2017-08-23 10:14:39 +0200
committerHairyFotr <hairyfotr@gmail.com>2017-08-23 10:14:39 +0200
commit985d23a52b76593a120adff5381c2df3a80fe298 (patch)
tree0eeec5a7b13a110e18f319d1fe1c4568b68385a7 /chapel.html.markdown
parent9c5a67ca0f3c989ef31141f83d64fba10b93b059 (diff)
Fix a bunch of typos
Diffstat (limited to 'chapel.html.markdown')
-rw-r--r--chapel.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapel.html.markdown b/chapel.html.markdown
index 68ce49cd..96ddc69d 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -242,7 +242,7 @@ do {
} while (j <= 10000);
writeln(jSum);
-// for loops are much like those in python in that they iterate over a
+// for loops are much like those in Python in that they iterate over a
// range. Ranges (like the 1..10 expression below) are a first-class object
// in Chapel, and as such can be stored in variables.
for i in 1..10 do write(i, ", ");
@@ -1064,14 +1064,14 @@ proc main() {
}
}
-// Heres an example using atomics and a sync variable to create a
+// Here's an example using atomics and a sync variable to create a
// count-down mutex (also known as a multiplexer).
var count: atomic int; // our counter
var lock$: sync bool; // the mutex lock
count.write(2); // Only let two tasks in at a time.
lock$.writeXF(true); // Set lock$ to full (unlocked)
- // Note: The value doesnt actually matter, just the state
+ // Note: The value doesn't actually matter, just the state
// (full:unlocked / empty:locked)
// Also, writeXF() fills (F) the sync var regardless of its state (X)