Adding another xml test; spelling fixes

This commit is contained in:
Mike Farah
2023-09-26 14:43:08 +10:00
parent 05ad1dad90
commit 0cf3adf5dd
10 changed files with 38 additions and 19 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ func handleToken(tokens []*token, index int, postProcessedTokens []*token) (toke
if index != len(tokens)-1 && currentToken.CheckForPostTraverse &&
tokens[index+1].TokenType == openCollect {
log.Debug(" adding traverArray because next is opencollect")
log.Debug(" adding traverseArray because next is opencollect")
op := &Operation{OperationType: traverseArrayOpType}
postProcessedTokens = append(postProcessedTokens, &token{TokenType: operationToken, Operation: op})
}