Mistake in documentation (PG15+) - Mailing list pgsql-docs

From PG Doc comments form
Subject Mistake in documentation (PG15+)
Date
Msg-id 167965358747.3349096.16285106658125853751@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Mistake in documentation (PG15+)  (Daniel Gustafsson <daniel@yesql.se>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/15/datatype-numeric.html
Description:

Greetings.

Just found a mistake in documentation:

https://www.postgresql.org/docs/15/datatype-numeric.html
$$
Thus, a column declared as
NUMERIC(2, -3)
will round values to the nearest thousand and can store values between
-99000 and 99000, inclusive.
$$

But the correct range here would be from -99499 to 99499:

select 99499::NUMERIC(2, -3);

pgsql-docs by date:

Previous
From: Siddharth Jain
Date:
Subject: Re: Publishing Postgres Manual as a book
Next
From: Daniel Gustafsson
Date:
Subject: Re: Mistake in documentation (PG15+)