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
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ contracts](https://docs.onflow.org/core-contracts) that have already been deploy

⚠️ If we use an alias for the contract we should not specify it in the `deployment` section for that network.

Our example bellow should not include `FungibleToken` in `deployment` section for testnet and emulator network.
Our example below should not include `FungibleToken` in `deployment` section for testnet and emulator network.

```json
...
Expand Down
8 changes: 4 additions & 4 deletions docs/deploy-project-contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ source file location.
The rewritten versions are then deployed to their respective targets,
leaving the original contract files unchanged.

In the example above, the `Bar` contract would be rewritten like this:
In the example above, the `KittyItems` contract would be rewritten like this:

```cadence:title=Bar.cdc
import Foo from 0xf8d6e0586b0a20c7
```cadence:title=KittyItems.cdc
import NonFungibleToken from 0xf8d6e0586b0a20c7

pub contract Bar {
pub contract KittyItems {
// ...
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/initialize-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Reset configuration using: 'flow init --reset'

### Error Handling

Existing configuration will cause the error bellow.
You should initialize in an empty folder or reset configuration using `--reset` flag
Existing configuration will cause the error below.
You should initialize in an empty folder or reset configuration using `--reset` flag
or by removing the configuration file first.
```shell
❌ Command Error: configuration already exists at: flow.json, if you want to reset configuration use the reset flag
Expand Down