From 4f4adc04c891a022264e1169f85c58c512dda7af Mon Sep 17 00:00:00 2001 From: RainRat Date: Thu, 2 May 2024 10:14:59 -0700 Subject: [PATCH] fix typos --- capa/main.py | 2 +- capa/render/result_document.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/capa/main.py b/capa/main.py index 1bb53801b..eb43769d2 100644 --- a/capa/main.py +++ b/capa/main.py @@ -246,7 +246,7 @@ def install_common_args(parser, wanted=None): if "backend" in wanted: backends = [ - (BACKEND_AUTO, "(default) detect apppropriate backend automatically"), + (BACKEND_AUTO, "(default) detect appropriate backend automatically"), (BACKEND_VIV, "vivisect"), (BACKEND_PEFILE, "pefile (file features only)"), (BACKEND_BINJA, "Binary Ninja"), diff --git a/capa/render/result_document.py b/capa/render/result_document.py index 0dcd9dd15..d2de49d73 100644 --- a/capa/render/result_document.py +++ b/capa/render/result_document.py @@ -306,7 +306,7 @@ class Match(FrozenModel): args: success: did the node match? node: the logic node or feature node. - children: any children of the logic node. not relevent for features, can be empty. + children: any children of the logic node. not relevant for features, can be empty. locations: where the feature matched. not relevant for logic nodes (except range), can be empty. captures: captured values from the string/regex feature, and the locations of those values. """