Author: wayland Date: 2009-03-09 22:49:00 +0100 (Mon, 09 Mar 2009) New Revision: 25769
Modified: docs/Perl6/Spec/S32-setting-library/Numeric.pod Log: Changed real to re, and imaginary to im, as perl moritz_++ suggestion Modified: docs/Perl6/Spec/S32-setting-library/Numeric.pod =================================================================== --- docs/Perl6/Spec/S32-setting-library/Numeric.pod 2009-03-09 21:43:40 UTC (rev 25768) +++ docs/Perl6/Spec/S32-setting-library/Numeric.pod 2009-03-09 21:49:00 UTC (rev 25769) @@ -210,15 +210,15 @@ Returns (magnitude, angle) corresponding to the complex number. The magnitude is non-negative, and the angle in the range C<-π ..^ π>. -=item real +=item re - method real() {...} + method re() {...} Returns the real part of the complex number. -=item imaginary +=item im - method imaginary() {...} + method im() {...} Returns the imaginary part of a complex number.