* @section CAPI_USB_HOST_ASYNC_MODULE_OVERVIEW Overview
* Asynchronous transfers are performed by submitting previously prepared transfer handle (#usb_host_transfer_h).
* When the transfer is finished, the callback set by user is called.
- * Transfer handle contains all transfer parameters and, when configured, can be submited multiple times.
+ * Transfer handle contains all transfer parameters and, when configured, can be submitted multiple times.
* Most of parameters required for asynchronous transfers match those from synchronous transfer.
*
* Like in synchronous transfer, you must first obtain the endpoint handle. Then you can create a transfer handle with desired parameters.
* ret = usb_host_create_isochronous_transfer(ep, transfer_callback, data, length, num_iso_packets, user_data, timeout, &transfer);
* @endcode
*
- * Before submitting the transfer you must setup isochoronous packets lengths (and data, if making out transfer).
+ * Before submitting the transfer you must setup isochronous packets lengths (and data, if making out transfer).
* @code
* for (i = 0; i < num_iso_packets; ++i) {
* ret = usb_host_set_iso_packet_length(transfer, i, packet_lenght);
* @retval #USB_HOST_ERROR_NONE Successful
* @retval #USB_HOST_ERROR_NOT_SUPPORTED Not supported
* @retval #USB_HOST_ERROR_RESOURCE_BUSY Interfaces are currently claimed
- * @retval #USB_HOST_ERROR_NO_SUCH_DEVICE Device has beed disconnected
+ * @retval #USB_HOST_ERROR_NO_SUCH_DEVICE Device has been disconnected
* @retval #USB_HOST_ERROR_INVALID_PARAMETER Invalid parameter was passed
*/
int usb_host_device_unconfigure(usb_host_device_h dev);
/**
* @ingroup CAPI_USB_HOST_ASYNC_MODULE
- * @brief Sets number of isochrnous packet for isochronous transfer.
+ * @brief Sets number of isochronous packet for isochronous transfer.
* @details This function changes the number of isochronous packets in transfer.
* This parameter affects only isochronous transfers (i.e. transfers on isochronous endpoints).
* Use usb_host_endpoint_get_transfer_type() for checking types of your endpoints.