@@ -47,7 +47,7 @@ public static partial class Compute
47
47
[ Input ( "query" , "The string to carry out the fuzzy matching on." ) ]
48
48
[ Input ( "choices" , "A list of strings to compare the query against." ) ]
49
49
[ 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." ) ]
51
51
[ Output ( "result" , "A SearchResult containing the strings, scores and indexes resulting from the fuzzy matching algorithm." ) ]
52
52
public static List < SearchResult < string > > ExtractAll ( string query , IEnumerable < string > choices , Scorer scorer = Scorer . DefaultRatio , int cutOff = 0 )
53
53
{
@@ -74,7 +74,7 @@ public static List<SearchResult<string>> ExtractAll(string query, IEnumerable<st
74
74
[ Input ( "objects" , "A list of BHoMObjects to compare the query against." ) ]
75
75
[ Input ( "propertyName" , "The propertyName to compare the query against - the property must be a string and an exact match." ) ]
76
76
[ 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." ) ]
78
78
[ Output ( "result" , "A SearchResult containing the objects, scores and indexes resulting from the fuzzy matching algorithm." ) ]
79
79
public static List < SearchResult < BHoMObject > > ExtractAll ( string query , List < BHoMObject > objects , string propertyName , Scorer scorer = Scorer . DefaultRatio , int cutOff = 0 )
80
80
{
0 commit comments