Skip to content

Commit e4c1cf3

Browse files
committed
chore: fix registered trademarks
- Alpine Linux - Bash - CLA - GitHub - GitHub Action - Homebrew - macOS - MacPorts - Markdown - Powershell - Zsh All these brands have a specific exact way to write them
1 parent f42333b commit e4c1cf3

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

docs/src/docs/contributing/website.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Left menu is configured in `src/config/sidebar.yml`.
2424

2525
## Articles
2626

27-
Articles are located in `src/docs/` in `*.mdx` files. [MDX](https://mdxjs.com/getting-started/gatsby) is markdown
27+
Articles are located in `src/docs/` in `*.mdx` files. [MDX](https://mdxjs.com/getting-started/gatsby) is Markdown
2828
allowing to use `React` components.
2929

3030
## Templating

docs/src/docs/contributing/workflow.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,20 @@ Push your branch to your `golangci-lint` fork and open a pull request against th
4545

4646
## Pull request checks
4747

48-
First, please, accept [CLA](https://gist.github.com/jirfag/26a39fd375da84b2d5ad4296fecb0668) - [cla assistant](https://cla-assistant.io/) will make a comment on the pull request about it.
48+
First, please, accept [CLA](https://gist.github.com/jirfag/26a39fd375da84b2d5ad4296fecb0668) - [CLA assistant](https://cla-assistant.io/) will make a comment on the pull request about it.
4949

50-
Also, we run a few checks in CI by using GitHub actions, you can see them [here](https://github.com/golangci/golangci-lint/blob/master/.github/workflows/pr.yml).
50+
Also, we run a few checks in CI by using GitHub Actions, you can see them [here](https://github.com/golangci/golangci-lint/blob/master/.github/workflows/pr.yml).
5151

5252
## New releases
5353

5454
First, see [our versioning policy](/product/roadmap/#versioning-policy).
5555

5656
To make a new release create a tag `vx.y.z`. Don't forget to add zero patch version for a new minor release, e.g. `v1.99.0`.
57-
A GitHub action [workflow](https://github.com/golangci/golangci-lint/blob/master/.github/workflows/tag.yml) will start building and publishing release after that.
57+
A GitHub Action [workflow](https://github.com/golangci/golangci-lint/blob/master/.github/workflows/tag.yml) will start building and publishing release after that.
5858

5959
After making a release you need to update:
6060

61-
1. GitHub [action config](https://github.com/golangci/golangci-lint/blob/master/assets/github-action-config.json) by running:
61+
1. GitHub [Action config](https://github.com/golangci/golangci-lint/blob/master/assets/github-action-config.json) by running:
6262
```sh
6363
make assets/github-action-config.json
6464
```

docs/src/docs/welcome/install.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/insta
3636
# or install it into ./bin/
3737
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s {.LatestVersion}
3838

39-
# In alpine linux (as it does not come with curl by default)
39+
# In Alpine Linux (as it does not come with curl by default)
4040
wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s {.LatestVersion}
4141

4242
golangci-lint --version
@@ -62,7 +62,7 @@ On Windows, you can run the above commands with Git Bash, which comes with [Git
6262

6363
Golangci-lint is available inside the majority of the package managers.
6464

65-
### MacOS
65+
### macOS
6666

6767
#### Brew
6868

@@ -76,19 +76,19 @@ brew install golangci-lint
7676
brew upgrade golangci-lint
7777
```
7878

79-
Note: Previously we used a [homebrew tap](https://github.com/golangci/homebrew-tap). We recommend using official formula instead of the tap, but sometimes the most recent release
80-
isn't immediately available via homebrew core due to manual updates that need to occur from homebrew core maintainers. In this case, the tap formula, which is updated automatically,
79+
Note: Previously we used a [Homebrew tap](https://github.com/golangci/homebrew-tap). We recommend using official formula instead of the tap, but sometimes the most recent release
80+
isn't immediately available via Homebrew core due to manual updates that need to occur from Homebrew core maintainers. In this case, the tap formula, which is updated automatically,
8181
can be used to install the latest version of `golangci-lint`:
8282

8383
```sh
8484
brew tap golangci/tap
8585
brew install golangci/tap/golangci-lint
8686
```
8787

88-
#### Macports
88+
#### MacPorts
8989

90-
It can also be installed through [macports](https://www.macports.org/)
91-
The macports installation mode is community driven, and not officially maintained by golangci team.
90+
It can also be installed through [MacPorts](https://www.macports.org/)
91+
The MacPorts installation mode is community driven, and not officially maintained by golangci team.
9292

9393
```sh
9494
sudo port install golangci-lint

docs/src/docs/welcome/integrations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The following plugins support `golangci-lint`:
5050

5151
## Shell Completion
5252

53-
`golangci-lint` can generate bash, fish, powershell, and zsh completion files.
53+
`golangci-lint` can generate Bash, fish, PowerShell, and Zsh completion files.
5454

5555
### macOS
5656

pkg/printers/githubaction.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type GitHubAction struct {
1414
w io.Writer
1515
}
1616

17-
// NewGitHubAction output format outputs issues according to GitHub actions.
17+
// NewGitHubAction output format outputs issues according to GitHub Action.
1818
// Deprecated
1919
func NewGitHubAction(w io.Writer) *GitHubAction {
2020
return &GitHubAction{w: w}

scripts/gen_github_action_config/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ func fetchAllReleases(ctx context.Context) ([]release, error) {
225225
for {
226226
err := client.Query(ctx, &q, vars)
227227
if err != nil {
228-
return nil, fmt.Errorf("failed to fetch releases page from github: %w", err)
228+
return nil, fmt.Errorf("failed to fetch releases page from GitHub: %w", err)
229229
}
230230
releases := q.Repository.Releases
231231
allReleases = append(allReleases, releases.Nodes...)

0 commit comments

Comments
 (0)