diff --git a/src/evaluator.cpp b/src/evaluator.cpp index 68a21a6..71998cf 100644 --- a/src/evaluator.cpp +++ b/src/evaluator.cpp @@ -234,7 +234,7 @@ TQString Evaluator::autoFix( const TQString& expr ) if( expr[c] >= TQChar(32) ) result.append( expr[c] ); - // automagically close all tqparenthesis + // automagically close all parenthesis Tokens tokens = Evaluator::scan( result ); for( unsigned i=0; iisFunction(str)) str += " ans"; - // Add right tqparentheses as needed to balance out the expression. + // Add right parentheses as needed to balance out the expression. int parenLevel = getParenthesesLevel(str); for(int i = 0; i < parenLevel; ++i) str += ')';