We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcac644 commit 972de91Copy full SHA for 972de91
src/rule.jl
@@ -140,7 +140,7 @@ function (r::Rule)(term)
140
try
141
return r.matcher((term,), EMPTY_DICT) do bindings, n
142
# n == 1 means that exactly one term of the input (term,) was matched
143
- n === 1 ? (@timer "RHS" rhs(bindings)) : nothing
+ n == 1 ? (@timer "RHS" rhs(bindings)) : nothing
144
end
145
catch err
146
throw(RuleRewriteError(r, term))
0 commit comments