1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 23:06:49 +02:00

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( 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 );
}