From 6cac04b439c9354ca14cce3776baa3dc4f86b6eb Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Wed, 24 Apr 2024 12:14:40 -0400 Subject: [PATCH] Fix some spelling mistakes Signed-off-by: Michael Jackson --- .../src/SimplnxCore/Filters/FindFeatureClusteringFilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/FindFeatureClusteringFilter.cpp b/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/FindFeatureClusteringFilter.cpp index e32cc00792..62e9857cc2 100644 --- a/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/FindFeatureClusteringFilter.cpp +++ b/src/Plugins/SimplnxCore/src/SimplnxCore/Filters/FindFeatureClusteringFilter.cpp @@ -85,7 +85,7 @@ Parameters FindFeatureClusteringFilter::parameters() const "The path to the cell ensemble attribute matrix where the RDF and RDF min and max distance arrays will be stored", DataPath{})); params.insertSeparator(Parameters::Separator{"Created Cell Feature Data"}); params.insert( - std::make_unique(k_ClusteringListArrayName_Key, "Clustering List", "Distance of each Features's centroid to ever other Features's centroid", "ClusteringList")); + std::make_unique(k_ClusteringListArrayName_Key, "Clustering List", "Distance of each Feature's centroid to every other Feature's centroid", "ClusteringList")); params.insertSeparator(Parameters::Separator{"Created Cell Ensemble Data"}); params.insert(std::make_unique(k_RDFArrayName_Key, "Radial Distribution Function", "A histogram of the normalized frequency at each bin", "RDF")); params.insert(std::make_unique(k_MaxMinArrayName_Key, "Max and Min Separation Distances", "The max and min distance found between Features", "RDFMaxMinDistances"));