Skip to content

Commit

Permalink
Merge pull request #354 from vivekBoii/release/3.0
Browse files Browse the repository at this point in the history
fixed typo error in searching.md
  • Loading branch information
Shazwazza authored Oct 27, 2023
2 parents ee9ce0b + 98d852c commit 403bfa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/v2/docs-v1-v2/searching.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,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 @@ -249,4 +249,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 403bfa7

Please sign in to comment.