diff options
author | Ian Bertolacci <ian.bertolacci@gmail.com> | 2015-07-20 08:17:01 -0700 |
---|---|---|
committer | Ian Bertolacci <ian.bertolacci@gmail.com> | 2015-07-20 08:17:01 -0700 |
commit | d2d98a381047d30e0355a8dacd0fdbe1188345c0 (patch) | |
tree | c369a4cbee3489a6bca6fadff7b774debc2cee19 | |
parent | bcc84f9c768041b7f260907d4432e12658b76626 (diff) |
Spelling error
Tupe -> Tuple
-rw-r--r-- | chapel.html.markdown | 2 |
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 ); } |