Fix wrong spelling 05/187705/2 submit/tizen/20180828.043212 submit/tizen/20180830.111221
authorlokilee73 <changjoo.lee@samsung.com>
Tue, 28 Aug 2018 04:09:35 +0000 (13:09 +0900)
committerlokilee73 <changjoo.lee@samsung.com>
Tue, 28 Aug 2018 04:15:17 +0000 (13:15 +0900)
beed -> been
submited -> submitted
isochrnous -> isochronous

Change-Id: Ib4f83ad02b4b0f8ef63e098a135e3d58929026ec
Signed-off-by: lokilee73 <changjoo.lee@samsung.com>
doc/usb_host_doc.h
include/usb_host.h

index 6b83a8c746a2f21192f2414334c73f7800643b7d..7a6b193fea35b6d0c3939ea0a93f0fe434d25d72 100755 (executable)
  * @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);
index d0d3f3dcb716478efa285e2b4d6372d1c7294e60..12704d30b3e5ae90d878a6825fc38ed9db80b979 100755 (executable)
@@ -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.