spelling: process

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:30:31 -05:00
parent 67713b7888
commit 060d7cb58d
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
////////////////////////////////////////////////////////////////////////////////
// Template vars injected by projess_js.py:
// Template vars injected by process_js.py:
// boolean
const isSandbox = ${IS_SANDBOX};

View file

@ -519,7 +519,7 @@ void process_manager_process_setup(PebbleTask task) {
// ---------------------------------------------------------------------------------------------
//! Kills the process, giving it no chance to clean things up or exit gracefully. The proces must already be in a
//! Kills the process, giving it no chance to clean things up or exit gracefully. The process must already be in a
//! state where it's safe to exit, so the caller must call process_manager_make_process_safe_to_kill() first and only
//! call this method if process_manager_make_process_safe_to_kill() returns true;
void process_manager_process_cleanup(PebbleTask task) {
@ -575,7 +575,7 @@ void process_manager_process_cleanup(PebbleTask task) {
if (context->to_process_event_queue &&
pdFAIL == event_queue_cleanup_and_reset(context->to_process_event_queue)) {
PBL_LOG(LOG_LEVEL_ERROR, "The to processs queue could not be reset!");
PBL_LOG(LOG_LEVEL_ERROR, "The to process queue could not be reset!");
}
context->to_process_event_queue = NULL;
}

View file

@ -50,7 +50,7 @@ void persist_service_unlock_store(SettingsFile *store);
//! Call during each process's startup.
void persist_service_client_open(const Uuid *uuid);
//! Call once after proces exits to clean it up.
//! Call once after process exits to clean it up.
void persist_service_client_close(const Uuid *uuid);
//! Deletes the app's persist file.