doc/md: fix predicate examples (#2140)

This commit is contained in:
Ariel Mashraki
2021-11-16 13:22:23 +02:00
committed by GitHub
parent 99ad873ae0
commit 9e1e8472e9

View File

@@ -253,7 +253,7 @@ sqljson.LenEQ(user.FieldAttrs, 2)
sql.Or(
sqljson.LenGT(user.FieldData, 10, sqljson.Path("attributes")),
sqljson.LenLT(user.FieldData, 20, sqljson.Path("attributes")),
sqljson.LenLT(user.FieldData, 20, sqljson.Path("attributes")),
)
```