From: TaeminYeom Date: Fri, 24 Mar 2023 01:37:06 +0000 (+0900) Subject: Fix typo in header decription X-Git-Tag: accepted/tizen/unified/20230325.044635^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F85%2F290385%2F1;p=platform%2Fcore%2Fapi%2Fperipheral-io.git Fix typo in header decription -out -> in (peripheral_uart_read function parameter) -siginificant -> significant (peripheral_spi_bit_order_e enum) Change-Id: I3724599f41f77ed5378ffe50213cf9d714af2362 Signed-off-by: TaeminYeom --- diff --git a/include/peripheral_io.h b/include/peripheral_io.h index 0df21a4..7594b8d 100644 --- a/include/peripheral_io.h +++ b/include/peripheral_io.h @@ -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;