diff --git a/docs/4.tools/cli.md b/docs/4.tools/cli.md index 34a799f2dac..2de64443cfd 100644 --- a/docs/4.tools/cli.md +++ b/docs/4.tools/cli.md @@ -18,7 +18,7 @@ Under the hood, NEAR CLI utilizes the [`NEAR JavaScript API`](https://github.com :::info The NEAR CLI also comes with an implementation in Rust called [`near-cli-rs`](https://github.com/near/near-cli-rs). -If you want to use near-cli whilst you have near-cli-rs installed, prefix the following commands with "npx". +If you want to use `near-cli` while you have `near-cli-rs` installed, prefix the following commands with `npx`. ::: ## Overview {#overview} @@ -552,7 +552,7 @@ near create-account sub-acct2.example-acct.testnet --masterAccount example-acct. ``` **.testnet example:** -To create a .testnet (or .mainnet) account one must call the testnet contract to create the account for them, here is an example: +To create a `.testnet` (or `.mainnet`) account, you must call the testnet contract to create the account. Here is an example: ```bash near call testnet create_account '{"new_account_id": ".testnet", "new_public_key": "ed25519:"}' --deposit 0.00182 --accountId ```