Skip to content

Commit ab3d478

Browse files
authored
Merge pull request JuliaCollections#104 from dmbates/patch-1
Remove superfluous formal argument in method
2 parents 940195a + 9499251 commit ab3d478

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/printing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ function print_tree(printnode::Function, io::IO, node;
266266
end
267267

268268
print_tree(io::IO, node; kw...) = print_tree(printnode, io, node; kw...)
269-
print_tree(tree, node; kw...) = print_tree(stdout, node; kw...)
269+
print_tree(node; kw...) = print_tree(stdout, node; kw...)
270270

271271

272272
"""

0 commit comments

Comments
 (0)