Fix typos

This commit is contained in:
Timo Westkämper 2014-12-19 21:32:04 +02:00
parent b4c137e9dd
commit 5e328bcc17
2 changed files with 2 additions and 2 deletions

View File

@ -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"))

View File

@ -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"))