Fix typo in header decription 85/290385/1 accepted/tizen/unified/20230325.044635
authorTaeminYeom <taemin.yeom@samsung.com>
Fri, 24 Mar 2023 01:37:06 +0000 (10:37 +0900)
committerTaeminYeom <taemin.yeom@samsung.com>
Fri, 24 Mar 2023 01:40:39 +0000 (10:40 +0900)
-out -> in (peripheral_uart_read function parameter)
-siginificant -> significant (peripheral_spi_bit_order_e enum)

Change-Id: I3724599f41f77ed5378ffe50213cf9d714af2362
Signed-off-by: TaeminYeom <taemin.yeom@samsung.com>
include/peripheral_io.h

index 0df21a4..7594b8d 100644 (file)
@@ -1079,7 +1079,7 @@ EXPORT_API int peripheral_uart_set_flow_control(peripheral_uart_h uart,
  *
  * @param[in] uart The UART handle
  * @param[out] data The buffer to read
- * @param[out] length The size of buffer (in bytes)
+ * @param[in] length The size of buffer (in bytes)
  *
  * @return the number of bytes read on success, otherwise a negative error value
  * @retval #PERIPHERAL_ERROR_NONE Successful
@@ -1192,7 +1192,7 @@ typedef enum {
  * @since_tizen 4.0
  */
 typedef enum {
-       PERIPHERAL_SPI_BIT_ORDER_MSB = 0, /**< Use most siginificant bit first */
+       PERIPHERAL_SPI_BIT_ORDER_MSB = 0, /**< Use most significant bit first */
        PERIPHERAL_SPI_BIT_ORDER_LSB,     /**< Use least significant bit first */
 } peripheral_spi_bit_order_e;