Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Dec 2, 2022
2 parents 48b7303 + c883784 commit 82097f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ the built contract.
target/wasm32-unknown-unknown/release/[project-name].wasm
```

The `.wasm` file contains the logic of the contract, as well as a the contracts
The `.wasm` file contains the logic of the contract, as well as the contract's
specification that can be imported into other contracts who wish to call it.
This is the only artifact needed to deploy the contract, share the interface
with others, or integration test against the contract.
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/deploy-to-futurenet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Create an account on the [Futurenet] network by making a request to the
Friendbot. Specify as the `addr` the `G...` key of your account.

```sh
curl https://friendbot-futurenet.stellar.org/?addr=G...
curl "https://friendbot-futurenet.stellar.org/?addr=G..."
```

Once you have an account on the network, we'll use the code we wrote in [Write a
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/deploy-to-local-network.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Create an account on the local sandbox environment by making a request to the
local Friendbot. Specify as the `addr` the `G...` key of your account.

```sh
curl http://localhost:8000/friendbot?addr=G...
curl "http://localhost:8000/friendbot?addr=G..."
```

Once you have an account on the network, we'll use the code we wrote in [Write a
Expand Down

0 comments on commit 82097f9

Please sign in to comment.