Author: jnthn
Date: 2009-04-28 17:30:11 +0200 (Tue, 28 Apr 2009)
New Revision: 26534
Modified:
docs/Perl6/Spec/S04-control.pod
Log:
[spec] s/atan/atan2/
Modified: docs/Perl6/Spec/S04-control.pod
===================================================================
--- docs/Perl6/Spec/S04-control.pod 2009-04-28 14:42:08 UTC (rev 26533)
+++ docs/Perl6/Spec/S04-control.pod 2009-04-28 15:30:11 UTC (rev 26534)
@@ -99,7 +99,7 @@
may be initialized with a pseudo-assignment:
constant Num $pi = 3;
- constant Num π = atan(2,2) * 4;
+ constant Num π = atan2(2,2) * 4;
The initializing expression is evaluated at BEGIN time.