From f2857d49c2652b601ca6fe4f4419a9cf6016c69f Mon Sep 17 00:00:00 2001 From: dropbigfish Date: Sun, 20 Apr 2025 12:47:05 +0800 Subject: [PATCH] chore: fix some typos in comment Signed-off-by: dropbigfish --- CONTRIBUTING.md | 6 +++--- internal/test/test_test.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8cce65bbd..b3148e591 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -164,7 +164,7 @@ To make the new version the default version that is installed ## Adding a scaffold You can add your own scaffold by creating a GitHub repository containing the scaffold content and then making a PR to update the `scaffolds.json` in the Flow CLI repository. You need to add an entry to the list -with the bellow content. +with the below content. ```json { @@ -220,7 +220,7 @@ equal (=) sign (ex: `--username test` or `--username=test`) flow accounts get --filter "address" ``` -Use common naming for default falgs such as: +Use common naming for default flags such as: `--log`: Logging level. @@ -344,7 +344,7 @@ Main help screen must contain a list of all commands with their own description, it must also include examples for commands. Help screen should include link to the documentation website. Commands should have a description that is not too long (less than 100 characters). -Help should be outputed if command is ran without any arguments. Help outline should be: +Help should be outputted if command is ran without any arguments. Help outline should be: ```Description: diff --git a/internal/test/test_test.go b/internal/test/test_test.go index f861dbf3a..0ef07f96b 100644 --- a/internal/test/test_test.go +++ b/internal/test/test_test.go @@ -227,7 +227,7 @@ func TestExecutingTests(t *testing.T) { } state.Contracts().AddOrUpdate(c) // fungibleToken has no `testing` alias, but it is not - // actually deployed/used, so there is no errror. + // actually deployed/used, so there is no error. fungibleToken := config.Contract{ Name: "FungibleToken", Location: "cadence/contracts/FungibleToken.cdc",