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 src/content/docs/getting-started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ brew install probe-rs
### [cargo binstall](https://crates.io/crates/cargo-binstall)

```bash
cargo binstall probe-rs-tools
cargo install probe-rs-tools
Copy link

Copilot AI Dec 20, 2025

Choose a reason for hiding this comment

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

This change creates an inconsistency. The section header indicates this is for "cargo binstall" (a tool that downloads pre-compiled binaries), but the command has been changed to "cargo install" (which builds from source).

Since there is already a separate section below titled "Installing from source (cargo install)" that documents the cargo install method, this section should use the correct command for cargo binstall. The original command "cargo binstall probe-rs-tools" appears to be correct for this section.

If the intention is to remove the cargo binstall section entirely, then the section header and this code block should be removed, not just the command changed.

Suggested change
cargo install probe-rs-tools
cargo binstall probe-rs-tools

Copilot uses AI. Check for mistakes.
```

## Installing from source (`cargo install`)
Expand Down