Skip to content

fix: correct broken links in Ruby guide #757

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
> Click on the linked pull request, commit, or the guideline itself to read more
> detailed explanations with examples and reasoning behind these recommendations.

- [Use an opinionated set of rules for Rubocop](./Use an opinionated set of rules for Rubocop.md)
- [Limit use of conditional modifiers to short, simple cases](./Limit use of conditional modifiers to short, simple cases.md)
- [Use an opinionated set of rules for Rubocop](Use%20an%20opinionated%20set%20of%20rules%20for%20Rubocop.md)
- [Limit use of conditional modifiers to short, simple cases](Limit%20use%20of%20conditional%20modifiers%20to%20short,%20simple%20cases.md)
- Avoid multiple assignments per line (`one, two = 1, 2`). [#109]
- Avoid organizational comments (`# Validations`). [#63]
- Avoid ternary operators (`boolean ? true : false`). Use multi-line `if`
Expand Down