Not sure if this is the right list for this, but ... diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index 5f4e39c..f70b913 100644 --- a/pod/perlfaq7.pod +++ b/pod/perlfaq7.pod @@ -153,7 +153,7 @@ deliberately have precedence lower than that of list operators for just such situations as the one above.
Another operator with surprising precedence is exponentiation. It -binds more tightly even than unary minus, making C<-2**2> product a +binds more tightly even than unary minus, making C<-2**2> produce a negative not a positive four. It is also right-associating, meaning that C<2**3**2> is two raised to the ninth power, not eight squared. -- William Pursell