From c11633c5db6fcdfe4e4c82ea8acf6f5f95c56835 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 4 Jan 2023 00:25:11 -0500 Subject: [PATCH] spelling: minimum Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- scripts/capa2yara.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/capa2yara.py b/scripts/capa2yara.py index 0cb9542d..20a88594 100644 --- a/scripts/capa2yara.py +++ b/scripts/capa2yara.py @@ -377,7 +377,7 @@ def convert_rule(rule, rulename, cround, depth): if s_type == "Some": cmin = kid.count - logger.info("Some type with mininum: " + str(cmin)) + logger.info("Some type with minimum: " + str(cmin)) if not cmin: logger.info("this is optional: which means, we can just ignore it") @@ -482,7 +482,7 @@ def convert_rule(rule, rulename, cround, depth): elif statement == "Some": cmin = rule.count - logger.info("Some type with mininum at2: " + str(cmin)) + logger.info("Some type with minimum at2: " + str(cmin)) if not cmin: logger.info("this is optional: which means, we can just ignore it")