From 555c36805287ab8d68e9713663125ab1a7f317e6 Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:02:14 -0500 Subject: [PATCH] docs: capitalize POSIX and Windows correctly (#44557) * docs: capitalize POSIX correctly Co-authored-by: Charles Kerr * docs: capitalize Windows correctly Co-authored-by: Charles Kerr --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr --- docs/api/app.md | 2 +- docs/api/command-line-switches.md | 2 +- docs/api/shell.md | 2 +- docs/api/utility-process.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/api/app.md b/docs/api/app.md index 1f9fe7a369f..ab21478f324 100755 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -416,7 +416,7 @@ Returns: * `launch-failed` - Process never successfully launched * `integrity-failure` - Windows code integrity checks failed * `exitCode` number - The exit code for the process - (e.g. status from waitpid if on posix, from GetExitCodeProcess on Windows). + (e.g. status from waitpid if on POSIX, from GetExitCodeProcess on Windows). * `serviceName` string (optional) - The non-localized name of the process. * `name` string (optional) - The name of the process. Examples for utility: `Audio Service`, `Content Decryption Module Service`, `Network Service`, `Video Capture`, etc. diff --git a/docs/api/command-line-switches.md b/docs/api/command-line-switches.md index 3909d9ed304..67e6ddfd453 100644 --- a/docs/api/command-line-switches.md +++ b/docs/api/command-line-switches.md @@ -38,7 +38,7 @@ Without `*` prefix the URL has to match exactly. ### --disable-ntlm-v2 -Disables NTLM v2 for posix platforms, no effect elsewhere. +Disables NTLM v2 for POSIX platforms, no effect elsewhere. ### --disable-http-cache diff --git a/docs/api/shell.md b/docs/api/shell.md index afbb966cc00..1008b73c164 100644 --- a/docs/api/shell.md +++ b/docs/api/shell.md @@ -36,7 +36,7 @@ Open the given file in the desktop's default manner. ### `shell.openExternal(url[, options])` -* `url` string - Max 2081 characters on windows. +* `url` string - Max 2081 characters on Windows. * `options` Object (optional) * `activate` boolean (optional) _macOS_ - `true` to bring the opened application to the foreground. The default is `true`. * `workingDirectory` string (optional) _Windows_ - The working directory. diff --git a/docs/api/utility-process.md b/docs/api/utility-process.md index c44308b9bbb..1cb6bfc1230 100644 --- a/docs/api/utility-process.md +++ b/docs/api/utility-process.md @@ -133,7 +133,7 @@ Emitted once the child process has spawned successfully. Returns: * `code` number - Contains the exit code for -the process obtained from waitpid on posix, or GetExitCodeProcess on windows. +the process obtained from waitpid on POSIX, or GetExitCodeProcess on Windows. Emitted after the child process ends.