Author: masak Date: 2010-02-24 00:14:59 +0100 (Wed, 24 Feb 2010) New Revision: 29811
Modified: docs/Perl6/Spec/S12-objects.pod Log: [S12] found/fixed a case of a missing comma between adverbs Modified: docs/Perl6/Spec/S12-objects.pod =================================================================== --- docs/Perl6/Spec/S12-objects.pod 2010-02-23 21:05:30 UTC (rev 29810) +++ docs/Perl6/Spec/S12-objects.pod 2010-02-23 23:14:59 UTC (rev 29811) @@ -820,7 +820,7 @@ One handy place for an in-place mutator is to call a constructor on a variable of a known type: - my Dog $spot .= new(:tail<LONG> :legs<SHORT>); + my Dog $spot .= new(:tail<LONG>, :legs<SHORT>); =head1 Calling sets of methods