mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 15:24:09 +03:00
Spelling error
Tupe -> Tuple
This commit is contained in:
parent
bcc84f9c76
commit
d2d98a3810
@ -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 );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user