From: lokilee73 Date: Tue, 28 Aug 2018 04:09:35 +0000 (+0900) Subject: Fix wrong spelling X-Git-Tag: submit/tizen/20180828.043212^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43ae3da40437c4924a51c712699212a1df31c537;p=platform%2Fcore%2Fapi%2Fusb-host.git Fix wrong spelling beed -> been submited -> submitted isochrnous -> isochronous Change-Id: Ib4f83ad02b4b0f8ef63e098a135e3d58929026ec Signed-off-by: lokilee73 --- diff --git a/doc/usb_host_doc.h b/doc/usb_host_doc.h index 6b83a8c..7a6b193 100755 --- a/doc/usb_host_doc.h +++ b/doc/usb_host_doc.h @@ -239,7 +239,7 @@ * @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. @@ -322,7 +322,7 @@ * 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); diff --git a/include/usb_host.h b/include/usb_host.h index d0d3f3d..12704d3 100755 --- a/include/usb_host.h +++ b/include/usb_host.h @@ -479,7 +479,7 @@ int usb_host_set_config(usb_host_config_h configuration); * @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); @@ -1227,7 +1227,7 @@ int usb_host_transfer_set_timeout(usb_host_transfer_h transfer, unsigned int tim /** * @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.