Skip to content

Commit

Permalink
Add missing commas to example (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
raddevon authored Oct 5, 2023
1 parent ced5953 commit 94265c2
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 94265c2

Please sign in to comment.