Skip to content

Commit 972de91

Browse files
author
Rik Huijzer
authored
Fix typo (#321)
1 parent fcac644 commit 972de91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rule.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function (r::Rule)(term)
140140
try
141141
return r.matcher((term,), EMPTY_DICT) do bindings, n
142142
# n == 1 means that exactly one term of the input (term,) was matched
143-
n === 1 ? (@timer "RHS" rhs(bindings)) : nothing
143+
n == 1 ? (@timer "RHS" rhs(bindings)) : nothing
144144
end
145145
catch err
146146
throw(RuleRewriteError(r, term))

0 commit comments

Comments
 (0)