Spelling error

Tupe -> Tuple
This commit is contained in:
Ian Bertolacci 2015-07-20 08:17:01 -07:00
parent bcc84f9c76
commit d2d98a3810

View File

@ -501,7 +501,7 @@ writeln( false ^ true );
writeln( true ^ false ); writeln( true ^ false );
writeln( false ^ 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 ){ proc *( left : ?ltype, right : ?rtype): ( ltype, rtype ){
return (left, right ); return (left, right );
} }