spelling: javascript

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 11:08:51 -05:00
parent 4806c06f10
commit c01e9cf70d
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ typedef enum {
//! Use to hide the process, unless there is ongoing communication with //! Use to hide the process, unless there is ongoing communication with
//! the companion smartphone application. //! the companion smartphone application.
PROCESS_INFO_VISIBILITY_SHOWN_ON_COMMUNICATION = 1 << 2, PROCESS_INFO_VISIBILITY_SHOWN_ON_COMMUNICATION = 1 << 2,
//! Use to indicate the process allows Javascript API access //! Use to indicate the process allows JavaScript API access
PROCESS_INFO_ALLOW_JS = 1 << 3, PROCESS_INFO_ALLOW_JS = 1 << 3,
//! Use to indicate the process should have a worker.bin installed as well. //! Use to indicate the process should have a worker.bin installed as well.
PROCESS_INFO_HAS_WORKER = 1 << 4, PROCESS_INFO_HAS_WORKER = 1 << 4,

View file

@ -84,7 +84,7 @@ typedef struct PebbleProcessMd {
//! Can this process call kernel functionality directly or does it need to go through syscalls? //! Can this process call kernel functionality directly or does it need to go through syscalls?
bool is_unprivileged; bool is_unprivileged;
//! Allow Javascript applications to access this process //! Allow JavaScript applications to access this process
bool allow_js; bool allow_js;
//! This process has a sister worker process in flash. //! This process has a sister worker process in flash.