From 5c39677aacf91f02ce8d15d318251526e07c22af Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 26 Sep 2018 15:02:28 +0100 Subject: [PATCH] Correct a spelling mistake. --- tools/find_conv_optim_poly.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/find_conv_optim_poly.c b/tools/find_conv_optim_poly.c index 8b22574..4ea9bc7 100644 --- a/tools/find_conv_optim_poly.c +++ b/tools/find_conv_optim_poly.c @@ -210,7 +210,7 @@ void test(size_t rate, size_t order, // added by our msg block iterations and then sorts by this metric search_exhaustive_fin(exhaustive, convs_len, weights, num_scratches); - // decide paramters for next loop iter + // decide parameters for next loop iter // if we've reduced to 20 or fewer items, we're going to just select // those and declare the test done size_t new_convs_len = (convs_len / 2) < 20 ? 20 : convs_len / 2;