summaryrefslogtreecommitdiffhomepage
path: root/chapel.html.markdown
diff options
context:
space:
mode:
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 );
}