typos fixed

This commit is contained in:
2021-08-14 17:30:24 +02:00
parent fc0ce36e8d
commit efb4ee1648
7 changed files with 17 additions and 10 deletions

View File

@@ -95,7 +95,7 @@ namespace usql {
};
struct FunctionNode : Node {
std::string function;
std::string function; // TODO use enum
std::vector<std::unique_ptr<Node>> params;
FunctionNode(const std::string func_name, std::vector<std::unique_ptr<Node>> pars) :