Skip to content

Commit

Permalink
Update stdlib/REPL/src/REPLCompletions.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Jameson Nash <[email protected]>
  • Loading branch information
aviatesk and vtjnash authored Jan 27, 2022
1 parent 877000a commit 0d436b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/REPL/src/REPLCompletions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ function complete_methods!(out::Vector{Completion}, @nospecialize(funct), args_e
m isa Vector || return
for match in m
# TODO: if kwargs_ex, filter out methods without kwargs?
push!(out, MethodCompletion(t_in, match.method))
push!(out, MethodCompletion(match.spec_types, match.method))
end
end

Expand Down

0 comments on commit 0d436b1

Please sign in to comment.