Author: lwall Date: 2009-06-17 17:26:04 +0200 (Wed, 17 Jun 2009) New Revision: 27103
Modified: docs/Perl6/Spec/S29-functions.pod Log: [S29-functions] fix some misplaced types Modified: docs/Perl6/Spec/S29-functions.pod =================================================================== --- docs/Perl6/Spec/S29-functions.pod 2009-06-17 13:53:48 UTC (rev 27102) +++ docs/Perl6/Spec/S29-functions.pod 2009-06-17 15:26:04 UTC (rev 27103) @@ -282,9 +282,9 @@ =item ord - multi Char method chr( Int $grid: ) is export - multi Char sub chr( Int *...@grid ) - multi Int method ord( Str $string: ) is export + multi method chr( Int $grid: --> Char ) is export + multi sub chr( Int *...@grid --> Char ) + multi method ord( Str $string: --> Int ) is export C<chr> takes zero or more integer grapheme ids and returns the corresponding characters as a string. If any grapheme id is used