Skip to content

Commit f170583

Browse files
authored
Update utils.jl
1 parent 0f0ff20 commit f170583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ _kw_convert(x::EXPR) = EXPR(:kw, EXPR[x.args[1], x.args[2]], EXPR[x.head], x.ful
575575
576576
When parsing a function or macro signature, should it be converted to a tuple?
577577
"""
578-
convertsigtotuple(sig::EXPR) = isbracketed(sig) && !(istuple(sig.args[1]) || (headof(sig.args[1]) === :block) || issplat(sig.args[1]) || iscall(sig.args[1]))
578+
convertsigtotuple(sig::EXPR) = isbracketed(sig) && !(istuple(sig.args[1]) || iscall(sig.args[1]) || (headof(sig.args[1]) === :block) || issplat(sig.args[1]))
579579

580580
"""
581581
docable(head)

0 commit comments

Comments
 (0)