From ee449fd875d24cf595eca9fa652a71d8bc3529f0 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:15:25 -0500 Subject: [PATCH] spelling: characteristic Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/bluetooth/ble_client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fw/applib/bluetooth/ble_client.h b/src/fw/applib/bluetooth/ble_client.h index 60cade10..896906b8 100644 --- a/src/fw/applib/bluetooth/ble_client.h +++ b/src/fw/applib/bluetooth/ble_client.h @@ -184,7 +184,7 @@ uint16_t ble_client_get_maximum_value_length(BTDevice device); //! @return BTErrnoOK if the operation was successfully started, or ... TODO BTErrno ble_client_read(BLECharacteristic characteristic); -//! Write the value of a characterstic. +//! Write the value of a characteristic. //! A call to this function will result in a callback to the registered //! BLEClientWriteHandler handler. @see ble_client_set_write_response_handler. //! @param characteristic The characteristic for which to write the value @@ -196,7 +196,7 @@ BTErrno ble_client_write(BLECharacteristic characteristic, const uint8_t *value, size_t value_length); -//! Write the value of a characterstic without response. +//! Write the value of a characteristic without response. //! @param characteristic The characteristic for which to write the value //! @param value Buffer with the value to write //! @param value_length Number of bytes to write