Skip to content

Commit

Permalink
Fix markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
bitzoic committed Aug 29, 2024
1 parent 21ba44d commit 1e909dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ fn foo(my_metadata: Metadata) {
}
```

After:
After:

```sway
use standards::src7::*;
Expand Down Expand Up @@ -120,7 +120,7 @@ abi SetAssetMetadata {

- [#286](https://github.com/FuelLabs/sway-libs/pull/286) The `_set_name()`, `_set_symbol()`, `_mint()`, and `_set_metdata()` functions `name`, `symbol`, `sub_id`, and `metadata` arguments are now `Option`s.

Before:
Before:

```sway
fn foo(asset: AssetId, recipient: Identity, amount: u64, key: String, metadata: Metadata) {
Expand All @@ -131,7 +131,7 @@ fn foo(asset: AssetId, recipient: Identity, amount: u64, key: String, metadata:
}
```

After:
After:

```sway
fn foo(asset: AssetId, recipient: Identity, amount: u64, metadata: Metadata, key: String) {
Expand Down

0 comments on commit 1e909dd

Please sign in to comment.