spelling: successfully

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

View file

@ -103,7 +103,7 @@ static Receiver *prv_app_message_receiver_prepare(CommSession *session,
rcv->header_bytes_remaining = header_bytes_remaining;
// Always forward the header to default system receiver as well, we'll cancel it later on if the
// message was written succesfully to the app inbox.
// message was written successfully to the app inbox.
if (!prv_fwd_prepare(rcv, session, header_bytes_remaining)) {
kernel_free(rcv);
return NULL;

View file

@ -69,7 +69,7 @@ typedef void (*BlobDBInitImpl)(void);
//! \param key_len the length of the key, in bytes
//! \param val a pointer to the value data
//! \param val_len the length of the value, in bytes
//! \returns S_SUCCESS if the key/val pair was succesfully inserted
//! \returns S_SUCCESS if the key/val pair was successfully inserted
//! and an error code otherwise (See \ref StatusCode)
typedef status_t (*BlobDBInsertImpl)
(const uint8_t *key, int key_len, const uint8_t *val, int val_len);
@ -87,7 +87,7 @@ typedef int (*BlobDBGetLenImpl)
//! \param key_len the length of the key, in bytes
//! \param[out] val_out a pointer to a buffer of size val_len
//! \param val_len the length of the value to be copied, in bytes
//! \returns S_SUCCESS if the value for key was succesfully read,
//! \returns S_SUCCESS if the value for key was successfully read,
//! and an error code otherwise (See \ref StatusCode)
typedef status_t (*BlobDBReadImpl)
(const uint8_t *key, int key_len, uint8_t *val_out, int val_len);
@ -95,13 +95,13 @@ typedef status_t (*BlobDBReadImpl)
//! Implements the delete API. Note that this function should be blocking.
//! \param key a pointer to the key data
//! \param key_len the length of the key, in bytes
//! \returns S_SUCCESS if the key/val pair was succesfully deleted
//! \returns S_SUCCESS if the key/val pair was successfully deleted
//! and an error code otherwise (See \ref StatusCode)
typedef status_t (*BlobDBDeleteImpl)
(const uint8_t *key, int key_len);
//! Implements the flush API. Note that this function should be blocking.
//! \returns S_SUCCESS if all key/val pairs were succesfully deleted
//! \returns S_SUCCESS if all key/val pairs were successfully deleted
//! and an error code otherwise (See \ref StatusCode)
typedef status_t (*BlobDBFlushImpl)(void);

View file

@ -899,7 +899,7 @@ static status_t create_flash_file(File *f) {
}
}
// we have succesfully allocated space for the file, so add file specific info
// we have successfully allocated space for the file, so add file specific info
f->start_page = f->curr_page = start_page;
FileHeader file_hdr;