Commit 1e84d04c by eqy Committed by Tianqi Chen

check in (#3089)

parent eed28f58
...@@ -300,7 +300,7 @@ inline Expr Add(Expr lhs, Expr rhs) { ...@@ -300,7 +300,7 @@ inline Expr Add(Expr lhs, Expr rhs) {
} }
inline Expr Substract(Expr lhs, Expr rhs) { inline Expr Subtract(Expr lhs, Expr rhs) {
static const Op& op = Op::Get("subtract"); static const Op& op = Op::Get("subtract");
return CallNode::make(op, {lhs, rhs}, Attrs(), {}); return CallNode::make(op, {lhs, rhs}, Attrs(), {});
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment