We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95925a5 commit 44cc880Copy full SHA for 44cc880
1 file changed
src/APIResponder.jl
@@ -30,8 +30,7 @@ APIResponder(addr::String, ctx::Context=Context(), bound::Bool=true, id=nothing,
30
APIResponder(ip::IPv4, port::Int, ctx::Context=Context()) = APIResponder("tcp://$ip:$port", ctx)
31
32
function Base.show(io::IO, x::APIResponder)
33
- println(io, "JuliaWebAPI.APIResponder with $(length(x.endpoints)) endpoints:")
34
- Base.show_comma_array(io, keys(x.endpoints), "","")
+ print(io, "JuliaWebAPI.APIResponder with $(length(x.endpoints)) endpoints (", join(keys(x.endpoints), ","), ")")
35
end
36
37
function default_endpoint(f::Function)
0 commit comments