Skip to content

Commit 5bbfdc3

Browse files
Update cuttoff to cutoff in descriptions
1 parent 6e48708 commit 5bbfdc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Search_Engine/Compute/Extract/ExtractAll.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static partial class Compute
4747
[Input("query", "The string to carry out the fuzzy matching on.")]
4848
[Input("choices", "A list of strings to compare the query against.")]
4949
[Input("scorer", "The method to use to score the strings when compared.")]
50-
[Input("cutOff", "The cuttoff score (i.e. lower bound) for results to be returned.")]
50+
[Input("cutOff", "The cutoff score (i.e. lower bound) for results to be returned.")]
5151
[Output("result", "A SearchResult containing the strings, scores and indexes resulting from the fuzzy matching algorithm.")]
5252
public static List<SearchResult<string>> ExtractAll(string query, IEnumerable<string> choices, Scorer scorer = Scorer.DefaultRatio, int cutOff = 0)
5353
{
@@ -74,7 +74,7 @@ public static List<SearchResult<string>> ExtractAll(string query, IEnumerable<st
7474
[Input("objects", "A list of BHoMObjects to compare the query against.")]
7575
[Input("propertyName", "The propertyName to compare the query against - the property must be a string and an exact match.")]
7676
[Input("scorer", "The method to use to score the strings when compared.")]
77-
[Input("cutOff", "The cuttoff score (i.e. lower bound) for results to be returned.")]
77+
[Input("cutOff", "The cutoff score (i.e. lower bound) for results to be returned.")]
7878
[Output("result", "A SearchResult containing the objects, scores and indexes resulting from the fuzzy matching algorithm.")]
7979
public static List<SearchResult<BHoMObject>> ExtractAll(string query, List<BHoMObject> objects, string propertyName, Scorer scorer = Scorer.DefaultRatio, int cutOff = 0)
8080
{

0 commit comments

Comments
 (0)