mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
Fix typos
This commit is contained in:
parent
b4c137e9dd
commit
5e328bcc17
@ -49,7 +49,7 @@ Querying with Querydsl Lucene is as simple as this:
|
||||
```JAVA
|
||||
QDocument doc = new QDocument("doc");
|
||||
|
||||
IndexSearcher searcher = new IndexSearher(index);
|
||||
IndexSearcher searcher = new IndexSearcher(index);
|
||||
LuceneQuery query = new LuceneQuery(true, searcher);
|
||||
List<Document> documents = query
|
||||
.where(doc.year.between("1800", "2000").and(doc.title.startsWith("Huckle"))
|
||||
|
||||
@ -48,7 +48,7 @@ Querying with Querydsl Lucene is as simple as this:
|
||||
```JAVA
|
||||
QDocument doc = new QDocument("doc");
|
||||
|
||||
IndexSearcher searcher = new IndexSearher(index);
|
||||
IndexSearcher searcher = new IndexSearcher(index);
|
||||
LuceneQuery query = new LuceneQuery(true, searcher);
|
||||
List<Document> documents = query
|
||||
.where(doc.year.between("1800", "2000").and(doc.title.startsWith("Huckle"))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user