261 | @@ -262,16 +262,18 @@ CService LookupNumeric(const std::string& name, uint16_t portDefault = 0, DNSLoo
262 | CSubNet LookupSubNet(const std::string& subnet_str);
263 |
264 | /**
265 | - * Create a TCP or UNIX socket in the given address family.
266 | - * @param[in] address_family to use for the socket.
267 | + * Create a real socket from the operating system.
268 | + * @param[in] domain Communications domain, first argument to the socket(2) syscall.
269 | + * @param[in] type Type of the socket, second argument to the socket(2) syscall.
270 | + * @param[in] protocol The particular protocol to be used with the socke, third argument to the socket(2) syscall.
typo nit:
* [@param](/bitcoin-bitcoin/contributor/param/)[in] protocol The particular protocol to be used with the socket, third argument to the socket(2) syscall.
Oh, it is usually either s, sock or socket. socke is something new, that is extra genuine ;-)
Fixed, invalidating 3 ACKs but should be trivial to re-review.
Thanks!