Typo in examples in "8.14.5. jsonb Subscripting"

From: PG Doc comments form <noreply(at)postgresql(dot)org>
To: pgsql-docs(at)lists(dot)postgresql(dot)org
Cc: eric(dot)mutta(at)gmail(dot)com
Subject: Typo in examples in "8.14.5. jsonb Subscripting"
Date: 2022-07-07 00:27:01
Message-ID: 165715362165.665.3875113264927503997@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/datatype-json.html
Description:

Towards the end of the section, the code examples given have comments where
the JSON is using single quotes instead of double quotes around the
properties. For example this:

-- Where jsonb_field was {}, it is now {'a': [{'b': 1}]}

...should use double quotes around the "a" and "b" properties and read as
follows:

-- Where jsonb_field was {}, it is now {"a": [{"b": 1}]}

Likewise, this:

-- Where jsonb_field was [], it is now [null, {'a': 1}]

..should use double quotes around the "a" property and read as follows:

-- Where jsonb_field was [], it is now [null, {"a": 1}]

Many thanks,
Eric Mutta.

PS: hats off to the amazing people who write these docs - the json-related
docs are **incredibly thorough** to the point of being overwhelming! :-)

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Noboru Saito 2022-07-07 01:38:05 Re: proposal: convert comments in documents to html comments
Previous Message Bruce Momjian 2022-07-05 19:48:44 Re: proposal: convert comments in documents to html comments