diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 789ca630d2c..a25c122ac8f 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -11965,14 +11965,14 @@ table2-mapping
Less-than operator
[1, 2, 3]
$[*] ? (@ < 2)
- 1, 2
+ 1
<=
Less-than-or-equal-to operator
[1, 2, 3]
- $[*] ? (@ < 2)
- 1
+ $[*] ? (@ <= 2)
+ 1, 2
>
@@ -11982,7 +11982,7 @@ table2-mapping
3
- >
+ >=
Greater-than-or-equal-to operator
[1, 2, 3]
$[*] ? (@ >= 2)