From 4ef928dd02ff759400d25d53bec02a7e3785f7c9 Mon Sep 17 00:00:00 2001 From: Luke Mahan Date: Mon, 25 Oct 2021 21:30:08 -0400 Subject: [PATCH] docs: Typos and grammar fix (#933) --- docs/src/cli/commands.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/cli/commands.md b/docs/src/cli/commands.md index d06b860a0..29aad16f4 100644 --- a/docs/src/cli/commands.md +++ b/docs/src/cli/commands.md @@ -36,7 +36,7 @@ SUBCOMMANDS: anchor init ``` -Initializes a project workspace wit the following structure. +Initializes a project workspace with the following structure. * `Anchor.toml`: Anchor configuration file. * `Cargo.toml`: Rust workspace configuration file. @@ -114,7 +114,7 @@ anchor migrate ``` Runs the deploy script located at `migrations/deploy.js`, injecting a provider configured -form the workspace's `Anchor.toml`. For example, +from the workspace's `Anchor.toml`. For example, ```javascript // File: migrations/deploys.js @@ -136,7 +136,7 @@ and only support this simple deploy script at the moment. The `idl` subcommand provides commands for interacting with interface definition files. It's recommended to use these commands to store an IDL on chain, at a deterministic address, as a function of nothing but the the program's ID. This -allow us to generate clients for a program using nothing but the program ID. +allows us to generate clients for a program using nothing but the program ID. ### Idl Init