summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
authorTim Heaney <oylenshpeegul@gmail.com>2015-10-08 07:14:24 -0400
committerTim Heaney <oylenshpeegul@gmail.com>2015-10-08 07:14:24 -0400
commit6f2d38155930911159bfb4e169b4a4430fed2e72 (patch)
tree52b3969f6559e0e80c920ccf838cc7f243f72a08 /chapel.html.markdown
parentabd7444f9e5343f597b561a69297122142881fc8 (diff)
Typo: "thought of" not "though of"
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 e20be998..7252a3e4 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -633,7 +633,7 @@ writeln( toThisArray );
// 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
-// the same size, the body of the expression can be though of as an iterator.
+// the same size, the body of the expression can be thought of as an iterator.
// Because iterators can yield nothing, that iterator yields a different number
// of things than the domain of the array or loop, which is not allowed.