The example for creating a check constraint is missing a comma - Mailing list pgsql-docs

From PG Doc comments form
Subject The example for creating a check constraint is missing a comma
Date
Msg-id 151871659877.1393.2431103178451978795@wrigleys.postgresql.org
Whole thread Raw
Responses Re: The example for creating a check constraint is missing a comma
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/10/static/sql-createtable.html
Description:

See the example from the documentation for CREATE TABLE below. There should
be a comma before the CONSTRAINT keyword. 

CREATE TABLE distributors (
    did     integer,
    name    varchar(40)
    CONSTRAINT con1 CHECK (did > 100 AND name <> '')
);

pgsql-docs by date:

Previous
From: Bart Lengkeek
Date:
Subject: error fields
Next
From: Tom Lane
Date:
Subject: Re: The example for creating a check constraint is missing a comma