From 34b2a18fcc0a26d88f260acc6083abd612146beb Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:00:33 -0500 Subject: [PATCH] spelling: that Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/gcontext.h | 2 +- src/fw/comm/ble/gatt_client_subscriptions.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fw/applib/graphics/gcontext.h b/src/fw/applib/graphics/gcontext.h index dc200c32..866e2f86 100644 --- a/src/fw/applib/graphics/gcontext.h +++ b/src/fw/applib/graphics/gcontext.h @@ -71,7 +71,7 @@ typedef enum { typedef struct { //! Describes how to treat the range between .min_x and .max_x GDrawMaskRowInfoType type; - //! Left-most pixel, 3.0 means that that pixel 3 is fully visible, 3.5 means it's half visible + //! Left-most pixel, 3.0 means that pixel 3 is fully visible, 3.5 means it's half visible Fixed_S16_3 min_x; //! Right-most pixel, 10.7 means that pixel 10 is fully opaque Fixed_S16_3 max_x; diff --git a/src/fw/comm/ble/gatt_client_subscriptions.c b/src/fw/comm/ble/gatt_client_subscriptions.c index 181a8cfa..2058b0af 100644 --- a/src/fw/comm/ble/gatt_client_subscriptions.c +++ b/src/fw/comm/ble/gatt_client_subscriptions.c @@ -86,7 +86,7 @@ extern BLECharacteristic gatt_client_descriptor_get_characteristic_and_connectio // Function implemented by the gatt_client_operations module to write the CCCD (to alter the remote // subscription state). The big difference with gatt_client_op_write_descriptor() is that this // function calls back to the gatt_client_subscriptions module when the result of the write is -// received, so that that module can take care of sending the appropriate events to the clients. +// received, so that module can take care of sending the appropriate events to the clients. extern BTErrno gatt_client_op_write_descriptor_cccd(BLEDescriptor cccd_ref, const uint16_t *cccd_value);