Fix javadoc for filterManyRaw()

This commit is contained in:
Rob Bygrave
2023-08-21 11:17:29 +12:00
parent fbcd4c3133
commit b0da647b0e
2 changed files with 2 additions and 2 deletions
@@ -539,7 +539,7 @@ public interface ExpressionList<T> {
*
* new QCustomer()
* .name.startsWith("Postgres")
* .contacts.filterMany("status = ? and firstName like ?", Contact.Status.NEW, "Rob%")
* .contacts.filterManyRaw("status = ? and firstName like ?", Contact.Status.NEW, "Rob%")
* .findList();
*
* }</pre>