Skip to content

Commit

Permalink
Add missing commas to example
Browse files Browse the repository at this point in the history
  • Loading branch information
raddevon committed Oct 5, 2023
1 parent ced5953 commit 3398a9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/select.rst
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,8 @@ together with ``and``.
title: true,
filter: e.all(
e.set(
e.op(movie.title, "ilike", "captain%")
e.op(movie.title, "ilike", "%america%")
e.op(movie.title, "ilike", "captain%"),
e.op(movie.title, "ilike", "%america%"),
e.op(movie.title, "ilike", "%:%")
)
),
Expand Down

0 comments on commit 3398a9e

Please sign in to comment.