fix typo#1009
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: de385ef442
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
|
|
||
| # Install pop-cli | ||
| cargo binstall pop-cli --locked | ||
| cargo install pop-cli --locked |
There was a problem hiding this comment.
Use
cargo binstall in the quick-install snippet
The “Quick Install (Recommended)” section explicitly says it uses cargo-binstall to download pre-built binaries, but this line now runs cargo install, which compiles from source instead. That makes the instructions internally inconsistent and can break/slow installs for users who rely on the binary path (e.g., missing native build toolchains), especially since the preceding step installs cargo-binstall specifically for this flow.
Useful? React with 👍 / 👎.
No description provided.