Skip to content

Commit

Permalink
Fix docstring for Sockets.bind() (#36535)
Browse files Browse the repository at this point in the history
  • Loading branch information
goropikari committed Jul 5, 2020
1 parent 25073d6 commit dec679e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/Sockets/src/Sockets.jl
Expand Up @@ -247,7 +247,7 @@ function _bind(sock::UDPSocket, host::Union{IPv4, IPv6}, port::UInt16, flags::UI
end

"""
bind(socket::Union{UDPSocket, TCPSocket}, host::IPAddr, port::Integer; ipv6only=false, reuseaddr=false, kws...)
bind(socket::Union{TCPServer, UDPSocket, TCPSocket}, host::IPAddr, port::Integer; ipv6only=false, reuseaddr=false, kws...)
Bind `socket` to the given `host:port`. Note that `0.0.0.0` will listen on all devices.
Expand Down

3 comments on commit dec679e

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

Please sign in to comment.