diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index e833be8f96..f62c33e5c7 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -988,16 +988,23 @@ repeat('Pg', 4) PgPgPgPg double precision - Exponentiation (unlike typical mathematical practice, multiple uses of - ^ will associate left to right) + Exponentiation 2 ^ 3 8 + + Unlike typical mathematical practice, multiple uses of + ^ will associate left to right by default: + 2 ^ 3 ^ 3 512 + + + 2 ^ (3 ^ 3) + 134217728