Exponentiation example not clear - Mailing list pgsql-docs

From PG Doc comments form
Subject Exponentiation example not clear
Date
Msg-id 162661954599.693.13700316547731859171@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Exponentiation example not clear  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/13/functions-math.html
Description:

Quoting the docs:

Exponentiation (unlike typical mathematical practice, multiple uses of ^
will associate left to right)
2 ^ 3 → 8
2 ^ 3 ^ 3 → 512

You could probably add 

2 ^ (3 ^ 3) → 134217728 # 2 ^27

pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: Another pg_dump using split and gzip for large databases
Next
From: Laurenz Albe
Date:
Subject: Re: Indexes on Expressions - a note to remind users to run ANALYZE after creation