File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ limitations under the License.
2121
2222namespace euler {
2323
24- bool SimpleCondtition (TreeNode* t) {
24+ bool SimpleCondition (TreeNode* t) {
2525 std::vector<TreeNode*> children = t->GetChildren ();
2626 std::string op = children[0 ]->GetValue ();
2727 std::string p = children[1 ]->GetValue ();
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
2020
2121namespace euler {
2222
23- bool SimpleCondtition (TreeNode* t);
23+ bool SimpleCondition (TreeNode* t);
2424bool HasKey (TreeNode* t);
2525bool HasLabel (TreeNode* t);
2626bool Has (TreeNode* t);
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ namespace euler {
3030class Translator {
3131 public:
3232 explicit Translator (OptimizerType type) : env_type_(type) {
33- func_map_[" SIMPLE_CONDITION" ] = SimpleCondtition ;
33+ func_map_[" SIMPLE_CONDITION" ] = SimpleCondition ;
3434 func_map_[" HAS_KEY" ] = HasKey;
3535 func_map_[" HAS_LABEL" ] = HasLabel;
3636 func_map_[" HAS" ] = Has;
You can’t perform that action at this time.
0 commit comments