Skip to content

Commit

Permalink
Merge pull request #355 from vivekBoii/boii
Browse files Browse the repository at this point in the history
fix typo error in searching.md
  • Loading branch information
Shazwazza authored Oct 27, 2023
2 parents 403bfa7 + 8765159 commit 11ef198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/v2/articles/searching.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ query.Field("nodeTypeAlias", "CWS_Home".Boost(20));
var results = query.Execute();
```

This will boost the term `CWS_Home` and make enteries with `nodeTypeAlias:CWS_Home` score higher in the results.
This will boost the term `CWS_Home` and make entries with `nodeTypeAlias:CWS_Home` score higher in the results.

## Proximity

Expand Down Expand Up @@ -257,4 +257,4 @@ var query = searcher.CreateQuery();
var query = (LuceneSearchQuery)query.NativeQuery("hello:world").And(); // Make query ready for extending
query.LuceneQuery(NumericRangeQuery.NewInt64Range("numTest", 4, 5, true, true)); // Add the raw lucene query
var results = query.Execute();
```
```

0 comments on commit 11ef198

Please sign in to comment.