From ed20e77fd3a2dcce7006282aeede95b61b3a02a0 Mon Sep 17 00:00:00 2001 From: TaeminYeom Date: Fri, 24 Mar 2023 10:37:06 +0900 Subject: [PATCH] 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 --- include/peripheral_io.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.7.4