Skip to content

Commit b08fa34

Browse files
authored
Merge pull request #115 from grahamas/master
Remove unbound parameter
2 parents 14b5263 + 7da4a00 commit b08fa34

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/rule.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ end
304304

305305
Base.show(io::IO, acr::ACRule) = print(io, "ACRule(", acr.rule, ")")
306306

307-
function (acr::ACRule)(term) where {comm}
307+
function (acr::ACRule)(term)
308308
r = Rule(acr)
309309
if !(term isa Term)
310310
r(term)

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ end
1313
SymbolicUtils.show_simplified[] = false
1414

1515
#using SymbolicUtils: Rule
16+
@test_broken isempty(detect_unbound_args(SymbolicUtils))
1617

1718
include("basics.jl")
1819
include("order.jl")

0 commit comments

Comments
 (0)