From a5fd901d841e2dcabde76cc65fd6744de7fefb58 Mon Sep 17 00:00:00 2001 From: Cameron Yick Date: Mon, 28 Nov 2022 21:05:23 -0500 Subject: [PATCH] fix(processor): Fix spelling in the Intent Validator error message --- lux/processor/Validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lux/processor/Validator.py b/lux/processor/Validator.py index e0a14c1a..ee360b96 100644 --- a/lux/processor/Validator.py +++ b/lux/processor/Validator.py @@ -108,7 +108,7 @@ def validate_clause(clause): warn_msg += validate_clause(clause) if warn_msg != "" and not suppress_warning: warnings.warn( - "\nThe following issues are ecountered when validating the parsed intent:" + warn_msg, + "\nThe following issues are encountered when validating the parsed intent:" + warn_msg, stacklevel=2, )