summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2015-10-08 22:48:22 +0200
committerven <vendethiel@hotmail.fr>2015-10-08 22:48:22 +0200
commit6d85694f3b52f5f9ff0205488067f1224608e19b (patch)
treec6dfc4f8a758dfe82f5fc1079d8a768558c0f70d /chapel.html.markdown
parent468ac7efe9d3e73f02796201004ec588428598f9 (diff)
parent6f2d38155930911159bfb4e169b4a4430fed2e72 (diff)
Merge pull request #1401 from oylenshpeegul/patch-1
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.