summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
authorIan Bertolacci <ian.bertolacci@gmail.com>2015-07-20 08:17:01 -0700
committerIan Bertolacci <ian.bertolacci@gmail.com>2015-07-20 08:17:01 -0700
commitd2d98a381047d30e0355a8dacd0fdbe1188345c0 (patch)
treec369a4cbee3489a6bca6fadff7b774debc2cee19 /chapel.html.markdown
parentbcc84f9c768041b7f260907d4432e12658b76626 (diff)
Spelling error
Tupe -> Tuple
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 bbbf50e8..9ce184c0 100644
--- a/chapel.html.markdown
+++ b/chapel.html.markdown
@@ -501,7 +501,7 @@ writeln( false ^ true );
writeln( true ^ false );
writeln( false ^ false );
-// Define a * operator on any two types that returns a tupe of those types
+// Define a * operator on any two types that returns a tuple of those types
proc *( left : ?ltype, right : ?rtype): ( ltype, rtype ){
return (left, right );
}