diff --git a/sdk/tools/webpack/webpack-config.js.pytemplate b/sdk/tools/webpack/webpack-config.js.pytemplate index dd0714e5..ba5e84a3 100644 --- a/sdk/tools/webpack/webpack-config.js.pytemplate +++ b/sdk/tools/webpack/webpack-config.js.pytemplate @@ -1,5 +1,5 @@ //////////////////////////////////////////////////////////////////////////////// -// Template vars injected by projess_js.py: +// Template vars injected by process_js.py: // boolean const isSandbox = ${IS_SANDBOX}; diff --git a/src/fw/process_management/process_manager.c b/src/fw/process_management/process_manager.c index 93d772a4..6d04f6ab 100644 --- a/src/fw/process_management/process_manager.c +++ b/src/fw/process_management/process_manager.c @@ -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; } diff --git a/src/fw/services/normal/persist.h b/src/fw/services/normal/persist.h index 3bc09693..8dfbf332 100644 --- a/src/fw/services/normal/persist.h +++ b/src/fw/services/normal/persist.h @@ -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.