spelling: success

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:46:52 -05:00
parent 9bf2e4c8dc
commit 56b1584352
7 changed files with 7 additions and 7 deletions

View file

@ -234,7 +234,7 @@ BTErrno ble_client_write_without_response(BLECharacteristic characteristic,
//! @note Under the hood, this API writes to the Client Characteristic //! @note Under the hood, this API writes to the Client Characteristic
//! Configuration Descriptor's Notifications or Indications enabled/disabled //! Configuration Descriptor's Notifications or Indications enabled/disabled
//! bit. //! bit.
//! @return BTErrnoOK if the subscription request was sent sucessfully, or //! @return BTErrnoOK if the subscription request was sent successfully, or
//! TODO... //! TODO...
BTErrno ble_client_subscribe(BLECharacteristic characteristic, BTErrno ble_client_subscribe(BLECharacteristic characteristic,
BLESubscription subscription_type); BLESubscription subscription_type);

View file

@ -1065,7 +1065,7 @@ GBitmap *gbitmap_create_with_resource_system(ResAppNum app_num, uint32_t resourc
//! @internal //! @internal
//! @see gbitmap_init_with_resource //! @see gbitmap_init_with_resource
//! @param app_num The app's resource bank number //! @param app_num The app's resource bank number
//! @return true if we were sucessful, false otherwise //! @return true if we were successful, false otherwise
bool gbitmap_init_with_resource_system(GBitmap* bitmap, ResAppNum app_num, uint32_t resource_id); bool gbitmap_init_with_resource_system(GBitmap* bitmap, ResAppNum app_num, uint32_t resource_id);
//! @internal //! @internal

View file

@ -38,7 +38,7 @@ size_t comm_session_send_buffer_get_max_payload_length(const CommSession *sessio
//! the function returns with `true`, the amount of space (or more) is guaranteed to be available. //! the function returns with `true`, the amount of space (or more) is guaranteed to be available.
//! @param timeout_ms The maximum duration to wait for the send buffer to become available with the //! @param timeout_ms The maximum duration to wait for the send buffer to become available with the
//! required number of bytes of free space. //! required number of bytes of free space.
//! @return True if the "writer access" was sucessfully acquired, false otherwise. //! @return True if the "writer access" was successfully acquired, false otherwise.
SendBuffer * comm_session_send_buffer_begin_write(CommSession *session, uint16_t endpoint_id, SendBuffer * comm_session_send_buffer_begin_write(CommSession *session, uint16_t endpoint_id,
size_t required_free_length, size_t required_free_length,
uint32_t timeout_ms); uint32_t timeout_ms);

View file

@ -107,7 +107,7 @@ size_t comm_session_send_queue_get_read_pointer(const CommSession *session,
} }
void comm_session_send_queue_consume(CommSession *session, size_t remaining_length) { void comm_session_send_queue_consume(CommSession *session, size_t remaining_length) {
// The data has sucessfully been sent out at this point // The data has successfully been sent out at this point
comm_session_analytics_inc_bytes_sent(session, remaining_length); comm_session_analytics_inc_bytes_sent(session, remaining_length);
PBL_ASSERTN(session->send_queue_head); PBL_ASSERTN(session->send_queue_head);

View file

@ -129,7 +129,7 @@ bool sys_hrm_manager_set_update_interval(HRMSessionRef session, uint32_t update_
//! @param[out] app_id if not NULL, the app_id belonging to this subscription is returned here //! @param[out] app_id if not NULL, the app_id belonging to this subscription is returned here
//! @param[out] update_interval_s if not NULL, the requested update interval is returned here //! @param[out] update_interval_s if not NULL, the requested update interval is returned here
//! @param[out] expire_s if not NULL, the number of seconds that this subscription will expire in //! @param[out] expire_s if not NULL, the number of seconds that this subscription will expire in
//! @return true if succss, false if subscription was not found //! @return true if success, false if subscription was not found
bool sys_hrm_manager_get_subscription_info(HRMSessionRef session, AppInstallId *app_id, bool sys_hrm_manager_get_subscription_info(HRMSessionRef session, AppInstallId *app_id,
uint32_t *update_interval_s, uint16_t *expire_s, uint32_t *update_interval_s, uint16_t *expire_s,
HRMFeature *features); HRMFeature *features);

View file

@ -39,7 +39,7 @@ Record* factory_registry_get(const char* key, const uint8_t key_length, const ui
//! Remove a record from the factory settings registry //! Remove a record from the factory settings registry
//! //!
//! @return 0 on sucess, -1 if record not found //! @return 0 on success, -1 if record not found
int factory_registry_remove(const char* key, const uint8_t key_length, const uint8_t* uuid); int factory_registry_remove(const char* key, const uint8_t key_length, const uint8_t* uuid);
//! Write the factory settings registry to flash //! Write the factory settings registry to flash

View file

@ -28,7 +28,7 @@ def contains(a, b):
def claim(c, unclaimed_regions, symbol): def claim(c, unclaimed_regions, symbol):
""" Removes region (c_start, c_end) from the set of unclaimed_regions """ Removes region (c_start, c_end) from the set of unclaimed_regions
Return True if the region was sucessfully removed, False if it was Return True if the region was successfully removed, False if it was
already claimed. already claimed.
""" """