mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix links in the Contributing to Ruby on Rails guide [ci skip]
Those links work if read the guide from https://github.com/rails/rails/blob/main/guides/source/contributing_to_ruby_on_rails.md But on clicking on those links from https://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html they refer to not-found-resources: https://edgeguides.rubyonrails.org/codespell.txt https://edgeguides.rubyonrails.org/.github/workflows/lint.yml
This commit is contained in:
parent
d4b667e819
commit
42016f566f
1 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@ For `rails-ujs` CoffeeScript and JavaScript files, you can run `npm run lint` in
|
||||||
#### Spell Checking
|
#### Spell Checking
|
||||||
|
|
||||||
We are running [misspell](https://github.com/client9/misspell) which is mainly written in
|
We are running [misspell](https://github.com/client9/misspell) which is mainly written in
|
||||||
[Golang](https://golang.org/) to check spelling with [GitHub Actions](../../.github/workflows/lint.yml). Correct
|
[Golang](https://golang.org/) to check spelling with [GitHub Actions](https://github.com/rails/rails/blob/main/.github/workflows/lint.yml). Correct
|
||||||
commonly misspelled English words quickly with `misspell`. `misspell` is different from most other spell checkers
|
commonly misspelled English words quickly with `misspell`. `misspell` is different from most other spell checkers
|
||||||
because it doesn't use a custom dictionary. You can run `misspell` locally against all files with:
|
because it doesn't use a custom dictionary. You can run `misspell` locally against all files with:
|
||||||
|
|
||||||
|
@ -292,7 +292,7 @@ Notable `misspell` help options or flags are:
|
||||||
- `-w`: Overwrite file with corrections (default is just to display)
|
- `-w`: Overwrite file with corrections (default is just to display)
|
||||||
|
|
||||||
We also run [codespell](https://github.com/codespell-project/codespell) with GitHub Actions to check spelling and
|
We also run [codespell](https://github.com/codespell-project/codespell) with GitHub Actions to check spelling and
|
||||||
[codespell](https://pypi.org/project/codespell/) runs against a [small custom dictionary](../../codespell.txt).
|
[codespell](https://pypi.org/project/codespell/) runs against a [small custom dictionary](https://github.com/rails/rails/blob/main/codespell.txt).
|
||||||
`codespell` is written in [Python](https://www.python.org/) and you can run it with:
|
`codespell` is written in [Python](https://www.python.org/) and you can run it with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in a new issue