From 5cc005710ac93c08c5d661a0e8fe65028535ed8e Mon Sep 17 00:00:00 2001 From: Nikolai Kochetov Date: Tue, 8 Jun 2021 18:23:42 +0300 Subject: [PATCH] Update ASTIdentifier.cpp --- src/Parsers/ASTIdentifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parsers/ASTIdentifier.cpp b/src/Parsers/ASTIdentifier.cpp index fbf7ede1b17..5ebf42ad8e3 100644 --- a/src/Parsers/ASTIdentifier.cpp +++ b/src/Parsers/ASTIdentifier.cpp @@ -118,7 +118,7 @@ void ASTIdentifier::formatImplWithoutAlias(const FormatSettings & settings, Form /// Some AST revriting code, like IdentifierSemantic::setColumnLongName, /// does not respect children of identifier. - /// Here we also ingore children if they are empty. + /// Here we also ignore children if they are empty. if (name_parts[i].empty() && j < children.size()) children[j++]->formatImpl(settings, state, frame); else