Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ab3d478

Browse files
authoredJun 9, 2022
Merge pull request #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

+1-1
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
"""

2 commit comments

Comments
 (2)

oscardssmith commented on Jun 9, 2022

@oscardssmith
MemberAuthor

JuliaRegistrator commented on Jun 9, 2022

@JuliaRegistrator

Registration pull request created: JuliaRegistries/General/62043

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" ab3d4786835e71a8d7b8259480dc9569869a8f56
git push origin v0.4.0
Please sign in to comment.