Skip to content

Commit

Permalink
Update cuttoff to cutoff in descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjamesnugent committed Jan 17, 2024
1 parent d218238 commit 4cdab12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Search_Engine/Compute/Extract/ExtractAll.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static partial class Compute
[Input("query", "The string to carry out the fuzzy matching on.")]
[Input("choices", "A list of strings to compare the query against.")]
[Input("scorer", "The method to use to score the strings when compared.")]
[Input("cutOff", "The cuttoff score (i.e. lower bound) for results to be returned.")]
[Input("cutOff", "The cutoff score (i.e. lower bound) for results to be returned.")]
[Output("result", "A SearchResult containing the strings, scores and indexes resulting from the fuzzy matching algorithm.")]
public static List<SearchResult<string>> ExtractAll(string query, IEnumerable<string> choices, Scorer scorer = Scorer.DefaultRatio, int cutOff = 0)
{
Expand All @@ -74,7 +74,7 @@ public static List<SearchResult<string>> ExtractAll(string query, IEnumerable<st
[Input("objects", "A list of BHoMObjects to compare the query against.")]
[Input("propertyName", "The propertyName to compare the query against - the property must be a string and an exact match.")]
[Input("scorer", "The method to use to score the strings when compared.")]
[Input("cutOff", "The cuttoff score (i.e. lower bound) for results to be returned.")]
[Input("cutOff", "The cutoff score (i.e. lower bound) for results to be returned.")]
[Output("result", "A SearchResult containing the objects, scores and indexes resulting from the fuzzy matching algorithm.")]
public static List<SearchResult<BHoMObject>> ExtractAll(string query, List<BHoMObject> objects, string propertyName, Scorer scorer = Scorer.DefaultRatio, int cutOff = 0)
{
Expand Down

0 comments on commit 4cdab12

Please sign in to comment.