Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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:
<description>
Expand Down
2 changes: 1 addition & 1 deletion internal/test/test_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading