-
Notifications
You must be signed in to change notification settings - Fork 0
⚡ Bolt: reduce HTTP redirect latency with canonical URLs #89
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -116,12 +116,12 @@ the community. | |||||
|
|
||||||
| This Code of Conduct is adapted from the [Contributor Covenant][homepage], | ||||||
| version 2.0, available at | ||||||
| https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. | ||||||
| https://www.contributor-covenant.org/version/2/0/code_of_conduct/. | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The trailing period immediately following the URL (
Suggested change
|
||||||
|
|
||||||
| Community Impact Guidelines were inspired by [Mozilla's code of conduct | ||||||
| enforcement ladder](https://github.com/mozilla/inclusion). | ||||||
|
|
||||||
| [homepage]: https://www.contributor-covenant.org | ||||||
| [homepage]: https://www.contributor-covenant.org/ | ||||||
|
|
||||||
| For answers to common questions about this code of conduct, see the FAQ at | ||||||
| https://www.contributor-covenant.org/faq/. Translations are available at | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing period immediately following the URL (
/code_of_conduct/.) might be parsed as part of the URL by some Markdown parsers, leading to broken links or 404 errors. Wrapping the URL in angle brackets<...>ensures that the trailing period is correctly treated as punctuation rather than part of the URL path.