From 8f3eb5649a4bfaad1663dcbf5f1136add948c9ee Mon Sep 17 00:00:00 2001 From: Andre Sailer Date: Tue, 19 Sep 2023 08:40:36 +0200 Subject: [PATCH] Evaluator: fix typos of symbol --- DDParsers/include/Evaluator/Evaluator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DDParsers/include/Evaluator/Evaluator.h b/DDParsers/include/Evaluator/Evaluator.h index 80f41c8b6..4dfa6b30f 100644 --- a/DDParsers/include/Evaluator/Evaluator.h +++ b/DDParsers/include/Evaluator/Evaluator.h @@ -56,10 +56,10 @@ namespace dd4hep { WARNING_EXISTING_VARIABLE, /**< Redefinition of existing variable */ WARNING_EXISTING_FUNCTION, /**< Redefinition of existing function */ WARNING_BLANK_STRING, /**< Empty input string */ - ERROR_NOT_A_NAME, /**< Not allowed sysmbol in the name of variable or function */ + ERROR_NOT_A_NAME, /**< Not allowed symbol in the name of variable or function */ ERROR_SYNTAX_ERROR, /**< Syntax error */ ERROR_UNPAIRED_PARENTHESIS, /**< Unpaired parenthesis */ - ERROR_UNEXPECTED_SYMBOL, /**< Unexpected sysbol */ + ERROR_UNEXPECTED_SYMBOL, /**< Unexpected symbol */ ERROR_UNKNOWN_VARIABLE, /**< Non-existing variable */ ERROR_UNKNOWN_FUNCTION, /**< Non-existing function */ ERROR_EMPTY_PARAMETER, /**< Function call has empty parameter */