From e062af861b453769ccf3940fe7920a87d7d31fe6 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 13 Oct 2025 15:26:37 +0200 Subject: [PATCH] Remove extra semicolon in example Reported-By: Pavel Luzanov Discussion: https://postgr.es/m/175976566145.768.4645962241073007347@wrigleys.postgresql.org Backpatch-through: 18 --- doc/src/sgml/func/func-json.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/func/func-json.sgml b/doc/src/sgml/func/func-json.sgml index 91f98a345d4..b9316ba0ee5 100644 --- a/doc/src/sgml/func/func-json.sgml +++ b/doc/src/sgml/func/func-json.sgml @@ -1593,7 +1593,7 @@ ERROR: value too long for type character(2) [{"f1":1},2,null,3] - jsonb_strip_nulls('[1,2,null,3,4]', true); + jsonb_strip_nulls('[1,2,null,3,4]', true) [1,2,3,4]