1
0
Fork 0
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:
bogdanvlviv 2021-05-06 14:02:09 +00:00
parent d4b667e819
commit 42016f566f
No known key found for this signature in database
GPG key ID: E4ACD76A6DB6DFDD

View file

@ -278,7 +278,7 @@ For `rails-ujs` CoffeeScript and JavaScript files, you can run `npm run lint` in
#### Spell Checking
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
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)
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:
```bash