Skip to content

Commit

Permalink
[docs] Fix type in docs (MystenLabs#18165)
Browse files Browse the repository at this point in the history
## Description 

Describe the changes or additions included in this PR.

## Test plan 

How did you test the new or updated feature?

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
  • Loading branch information
hayes-mysten authored Jun 11, 2024
1 parent 45fe12d commit b3a4071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/docs/pages/typescript/executors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const [coin2] = tx1.splitCoins(tx2.gas, [1]);
tx1.transferObjects([coin2], address2);

const [{ digest: digest1 }, { digest: digest2 }] = await Promise.all([
executor.execute(tx1),
executor.execute(tx2),
executor.executeTransaction(tx1),
executor.executeTransaction(tx2),
]);
```

Expand Down

0 comments on commit b3a4071

Please sign in to comment.