Skip to content

Commit f6fc126

Browse files
committed
docs: update for .ov()
1 parent 6495312 commit f6fc126

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ let resp = client
147147
.wfts("phrase", "The Fat Cats", None)
148148
.cs("countries", "(10,20)")
149149
.cd("countries", "(10,20)")
150-
.ov("population_range", (100, 500))
150+
.ov("population_range", "(100,500)")
151151
.sl("population_range", (100, 500)) // ...and range operations!
152152
.sr("population_range", (100, 500)) // Find out more about the filters at:
153153
.nxl("population_range", (100, 500)) // https://postgrest.org/en/stable/api.html#operators

src/filter.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,8 +635,8 @@ impl Builder {
635635
self
636636
}
637637

638-
/// Finds all rows whose array or range value on the stated `column` is
639-
/// contained by the specified `filter`.
638+
/// Finds all rows whose array or range value on the stated `column`
639+
/// overlaps with the specified `filter`.
640640
///
641641
/// # Example
642642
///

0 commit comments

Comments
 (0)