summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAiden Fox Ivey <aiden.foxivey@shopify.com>2025-10-06 14:12:18 -0400
committerTakashi Kokubun <takashikkbn@gmail.com>2025-10-06 13:13:19 -0700
commit5f4877ab9e2892e294d3f07b13c8e4ec1bb4d70a (patch)
tree82da89ce0fe3362aecb2e817cfdb45f3e99343f8
parent3ec49b9870d8c26d552bd6ae7aa6a0f452daec25 (diff)
ZJIT: Simplify cargo install commands for nextest and insta
-rw-r--r--doc/zjit.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/zjit.md b/doc/zjit.md
index d0e66dfe85..86a27d7119 100644
--- a/doc/zjit.md
+++ b/doc/zjit.md
@@ -34,8 +34,11 @@ cargo doc --document-private-items -p zjit --open
## Testing
Make sure you have a `--enable-zjit=dev` build, and install the following tools:
-- `brew install cargo-nextest` - Required for running tests
-- `cargo install cargo-insta` - Required for updating snapshots
+```
+cargo install cargo-nextest
+cargo install cargo-insta
+```
+`cargo-nextest` is required for running tests, whereas `cargo-insta` is used for updating snapshots.
### make zjit-check