Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d7b96f7

Browse files
authored
Correct spelling of macOS (#3478)
* Correct spelling of macOS * fixup! Correct spelling of macOS * fixup! Correct spelling of macOS
1 parent 923c212 commit d7b96f7

File tree

11 files changed

+12
-11
lines changed

11 files changed

+12
-11
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@master
4040
with:
4141
config: .github/workflows/typos.toml
4242
- name: Fix Helper

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@ jobs:
187187
- name: Install dependencies
188188
run: |
189189
set -euo pipefail
190-
# The version of bash that MacOS ships with is too old
190+
# The version of bash that macOS ships with is too old
191191
brew install bash
192192
193-
# The version of make that MacOS ships with is too old
193+
# The version of make that macOS ships with is too old
194194
brew install make
195195
echo "$(brew --prefix)/opt/make/libexec/gnubin" >> $GITHUB_PATH
196196

.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/ides/web-ides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ resource "coder_app" "portainer" {
2929

3030
![code-server in a workspace](../images/code-server-ide.png)
3131

32-
[code-server](https://github.com/coder/coder) is our supported method of running VS Code in the web browser. A simple way to install code-server in Linux/MacOS workspaces is via the Coder agent in your template:
32+
[code-server](https://github.com/coder/coder) is our supported method of running VS Code in the web browser. A simple way to install code-server in Linux/macOS workspaces is via the Coder agent in your template:
3333

3434
```sh
3535
# edit your template

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
| ---------------- | ------------------------------- |

examples/templates/docker-with-dotfiles/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# dotfiles with Coder templates.
33

44
# The Docker aspect of the template only works
5-
# with MacOS/Linux amd64 systems. See the full
5+
# with macOS/Linux amd64 systems. See the full
66
# Docker example for details
77

88
terraform {

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)