From fa63bfcd916de9d5871da6b30e18e3690118c8af Mon Sep 17 00:00:00 2001 From: mario4tier Date: Tue, 5 Dec 2023 12:51:08 -0500 Subject: [PATCH] Minor docs update --- docs/src/cookbook/guides/build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/cookbook/guides/build.md b/docs/src/cookbook/guides/build.md index 86908e78..7bdcc45f 100644 --- a/docs/src/cookbook/guides/build.md +++ b/docs/src/cookbook/guides/build.md @@ -56,14 +56,14 @@ If you do not have suibase, then do the following for the first measurements: ```shell $ git clone -b devnet https://github.com/MystenLabs/sui.git $ cd sui -$ cargo build -p sui -p sui-faucet +$ cargo build --bin sui --bin sui-faucet ``` ... and get additional measurements with: ```shell $ cargo clean -$ cargo build -p sui -p sui-faucet +$ cargo build --bin sui --bin sui-faucet ``` :::