From 48b4b638b0f0f2809f940394729a252ab62e8066 Mon Sep 17 00:00:00 2001 From: Vivek Kumar <115945472+vivekBoii@users.noreply.github.com> Date: Sat, 28 Oct 2023 01:47:56 +0530 Subject: [PATCH] Update searching.md --- docs/searching.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/searching.md b/docs/searching.md index 505e36fcc..c61de9443 100644 --- a/docs/searching.md +++ b/docs/searching.md @@ -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 @@ -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(); -``` \ No newline at end of file +```