Skip to content

Commit baf198c

Browse files
committed
Fix javadoc from querydsl commit. (#1384)
Closes #1383.
1 parent 4a42cba commit baf198c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/querydsl/couchbase/document/AbstractCouchbaseQueryDSL.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ public AbstractCouchbaseQueryDSL(CouchbaseDocumentSerializer serializer) {
6060
}
6161

6262
/**
63-
* mongodb uses createQuery(Predicate filter) where the serializer creates the 'query' <br>
63+
* other spring-data project uses createQuery(Predicate filter) where the serializer creates the 'query' <br>
6464
* and then uses the result to create a BasicQuery with queryObject = result <br>
6565
* Couchbase Query has a 'criteria' which is a <br>
66-
* List<QueryCriteriaDefinition> criteria <br>
66+
* List&lt;QueryCriteriaDefinition&gt; criteria <br>
6767
* so we could create a List&lt;QueryCriteriaDefinition&gt; or an uber QueryCriteria that combines <br>
6868
* all the sub QueryDefinitions in the filter.
6969
*/
7070
protected QueryCriteriaDefinition createCriteria(Predicate predicate) {
71-
// mongodb uses createQuery(Predicate filter) where the serializer creates the 'queryObject' of the BasicQuery
71+
// other project use createQuery(Predicate filter) where the serializer creates the 'queryObject' of the BasicQuery
7272
return predicate != null ? (QueryCriteriaDefinition) this.serializer.handle(predicate) : null;
7373
}
7474

0 commit comments

Comments
 (0)