Skip to content
Closed
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Bun supports Linux (x64 & arm64), macOS (x64 & Apple Silicon), and Windows (x64

> **Linux users** — Kernel version 5.6 or higher is strongly recommended, but the minimum is 5.1.

> **x64 users** — if you see "illegal instruction" or similar errors, check our [CPU requirements](https://bun.com/docs/installation#cpu-requirements-and-baseline-builds)
> **x64 users** — if you see "illegal instruction" or similar errors, check our [CPU requirements]([https://bun.com/docs/installation#cpu-requirements-and-baseline-builds](https://bun.com/docs/installation#cpu-requirements))

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Fix malformed Markdown link syntax.

The link has nested brackets and parentheses which creates invalid Markdown syntax. The current syntax will not render as a working hyperlink, preventing x64 users from accessing CPU requirements documentation when troubleshooting "illegal instruction" errors.

🔗 Proposed fix
-> **x64 users** — if you see "illegal instruction" or similar errors, check our [CPU requirements]([https://bun.com/docs/installation#cpu-requirements-and-baseline-builds](https://bun.com/docs/installation#cpu-requirements))
+> **x64 users** — if you see "illegal instruction" or similar errors, check our [CPU requirements](https://bun.com/docs/installation#cpu-requirements)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
> **x64 users** — if you see "illegal instruction" or similar errors, check our [CPU requirements]([https://bun.com/docs/installation#cpu-requirements-and-baseline-builds](https://bun.com/docs/installation#cpu-requirements))
> **x64 users** — if you see "illegal instruction" or similar errors, check our [CPU requirements](https://bun.com/docs/installation#cpu-requirements)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` at line 50, The Markdown link on the x64 note is malformed due to
nested brackets around the URL; replace the current text with a proper Markdown
link by using a label and a single parenthesized URL, e.g., change the fragment
containing "**x64 users** — if you see "illegal instruction" or similar errors,
check our [CPU requirements]([https://...])" to use the correct syntax "[CPU
requirements](https://bun.com/docs/installation#cpu-requirements-and-baseline-builds)"
so the hyperlink renders correctly.


```sh
# with install script (recommended)
Expand Down