* @defgroup tsocket_address The tsocket_address abstraction
* @ingroup tsocket
*
- * The tsocket_address represents an socket endpoint genericly.
+ * The tsocket_address represents an socket endpoint generically.
* As it's like an abstract class it has no specific constructor.
- * The specific constructors are descripted in later sections.
+ * The specific constructors are described in later sections.
*
* @{
*/
*
* @param[in] ev The tevent_context to run on.
*
- * @param[in] dgram The dgram context diconnect from.
+ * @param[in] dgram The dgram context to disconnect from.
*
* @return Returns a 'tevent_req' handle, where the caller can
* register a callback with tevent_req_set_callback().
*
* @param[in] host_port_addr A valid ip address string based on the
* selected family (dns names are not allowed!). A port
- * number may follow sepatated by a colon. IPv6 may be
+ * number may follow separated by a colon. IPv6 may be
* surrounded in square brackets, and these are required
* if appending a port number. It's valid to pass NULL,
* which gets mapped to "0.0.0.0" or "::".
* You can use this function to wrap an existing file descriptors into the
* tdgram abstraction. After that you're not able to use this file descriptor
* for anything else. The file descriptor will be closed when the stream gets
- * freed. If you still want to use the fd you have have to create a duplicate.
+ * freed. If you still want to use the fd you have to create a duplicate.
*
* @param[in] mem_ctx The talloc memory context to use.
*
* @brief Connect async to a unix domain endpoint and create a tstream_context
* for the stream based communication.
*
- * Use this function to connenct asynchronously to a unix domainendpoint and
+ * Use this function to connect asynchronously to a unix domainendpoint and
* create a tstream_context for the stream based communication.
*
* The callback is triggered when a socket is connected and ready for IO or an
* You can use this function to wrap an existing file descriptors into the
* tstream abstraction. After that you're not able to use this file descriptor
* for anything else. The file descriptor will be closed when the stream gets
- * freed. If you still want to use the fd you have have to create a duplicate.
+ * freed. If you still want to use the fd you have to create a duplicate.
*
* @param[in] mem_ctx The talloc memory context to use.
*