Missing ; - Mailing list pgsql-docs

From PG Doc comments form
Subject Missing ;
Date
Msg-id 169965004097.225187.12941375915673151540@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Missing ;
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/sql-select.html
Description:

Hi,

To be consistent, the "with" example should end in a ";".

WITH t AS (
    SELECT random() as x FROM generate_series(1, 3)
  )
SELECT * FROM t
UNION ALL
SELECT * FROM t;

Possibly the most pathetic contribution ever? 
Apologies.

Tim

pgsql-docs by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Typo in documentation - runtime-config-wal
Next
From: Paul A Jungwirth
Date:
Subject: Re: Add minimal C example and SQL registration example for custom table access methods.