Skip to content

Commit 4c89835

Browse files
committed
fix(javadoc): fix spelling of Boost class
[skip ci]
1 parent 0ced39a commit 4c89835

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/io/weaviate/client6/v1/api/collections/query

src/main/java/io/weaviate/client6/v1/api/collections/query/Boost.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static Boost blend(Float weight, Integer depth, Boost... boosts) {
8080
var conditions = Arrays.stream(boosts)
8181
.<Condition>mapMulti((b, stream) -> {
8282
if (b.depth != null) {
83-
throw new IllegalArgumentException("A boost passed to Boosts.blend() cannot set it's own depth.");
83+
throw new IllegalArgumentException("A boost passed to Boost.blend() cannot set it's own depth.");
8484
}
8585
b.conditions.forEach(cond -> {
8686
if (cond.weight == null && b.weight != null) {

0 commit comments

Comments
 (0)