From 5bbfdc38f3a84d3abe26c05005a3ff929d8ee609 Mon Sep 17 00:00:00 2001 From: Peter Nugent Date: Wed, 17 Jan 2024 09:48:59 +0000 Subject: [PATCH] Update cuttoff to cutoff in descriptions --- Search_Engine/Compute/Extract/ExtractAll.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Search_Engine/Compute/Extract/ExtractAll.cs b/Search_Engine/Compute/Extract/ExtractAll.cs index 50041c83e0..e74c4eda06 100644 --- a/Search_Engine/Compute/Extract/ExtractAll.cs +++ b/Search_Engine/Compute/Extract/ExtractAll.cs @@ -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> ExtractAll(string query, IEnumerable choices, Scorer scorer = Scorer.DefaultRatio, int cutOff = 0) { @@ -74,7 +74,7 @@ public static List> ExtractAll(string query, IEnumerable> ExtractAll(string query, List objects, string propertyName, Scorer scorer = Scorer.DefaultRatio, int cutOff = 0) {