Skip to content

Commit 78e2354

Browse files
committed
Correct spelling of macOS
1 parent 604f211 commit 78e2354

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

.github/workflows/coder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Checkout
3737
uses: actions/checkout@v2
3838
- name: typos-action
39-
uses: crate-ci/typos@v1.0.4
39+
uses: crate-ci/typos@v1
4040
with:
4141
config: .github/workflows/typos.toml
4242
- name: Fix Helper

.github/workflows/typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
alog = "alog"
33
Jetbrains = "JetBrains"
44
IST = "IST"
5+
MacOS = "macOS"
56

67
[default.extend-words]
78

coderd/userpassword/userpassword_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// This test runs slowly on MacOS instance, and really
1+
// This test runs slowly on macOS instance, and really
22
// only needs to run on Linux anyways.
33
//go:build linux
44

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ We publish self-contained .zip and .tar.gz archives in [GitHub releases](https:/
112112
1. Unzip the folder you just downloaded, and move the `coder` executable to a location that's on your `PATH`
113113
114114
```sh
115-
# ex. MacOS and Linux
115+
# ex. macOS and Linux
116116
mv coder /usr/local/bin
117117
```
118118

docs/quickstart/docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Coder with Docker has the following advantages:
88

99
## Requirements
1010

11-
- A single MacOS or Linux box
11+
- A single macOS or Linux box
1212
- A running Docker daemon
1313

1414
## Instructions

docs/workspaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ coder update <workspace-name>
5151

5252
## Logging
5353

54-
Coder stores MacOS and Linux logs at the following locations:
54+
Coder stores macOS and Linux logs at the following locations:
5555

5656
| Service | Location |
5757
| ---------------- | ------------------------------- |

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ install_standalone() {
388388
echoh "Installing v$VERSION of the $ARCH release from GitHub."
389389
echoh
390390

391-
# MacOS releases are packaged as .zip
391+
# macOS releases are packaged as .zip
392392
case $OS in
393393
darwin) STANDALONE_ARCHIVE_FORMAT=zip ;;
394394
*) STANDALONE_ARCHIVE_FORMAT=tar.gz ;;

pty/start_other.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func startPty(cmd *exec.Cmd) (PTY, Process, error) {
3030
_ = ptty.Close()
3131
_ = tty.Close()
3232
if runtime.GOOS == "darwin" && strings.Contains(err.Error(), "bad file descriptor") {
33-
// MacOS has an obscure issue where the PTY occasionally closes
33+
// macOS has an obscure issue where the PTY occasionally closes
3434
// before it's used. It's unknown why this is, but creating a new
3535
// TTY resolves it.
3636
return startPty(cmd)

0 commit comments

Comments
 (0)