Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken sections and remove a broken link #617

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ Transaction methods to perform actions on the V3 Pool contract

### supplyBundle

A [bundle method](#bundle-methods) for supply, formerly deposit, which supplies
A bundle method for supply, formerly deposit, which supplies
the underlying asset into the Pool reserve. For every token that is supplied, a
corresponding amount of aTokens is minted.

Expand Down Expand Up @@ -540,8 +540,7 @@ const supplyBundle: ActionBundle = await poolBundle.supplyBundle({
amount,
onBehalfOf,
});

// Submit bundle components as shown in #bundle-methods section
```

</details>

Expand Down Expand Up @@ -1135,7 +1134,7 @@ transactions

### depositBundle

A [bundle method](#bundle-methods) for deposit, which supplies the underlying
A bundle method for deposit, which supplies the underlying
asset into the Pool reserve. For every token that is supplied, a corresponding
amount of aTokens is minted.

Expand Down Expand Up @@ -1165,8 +1164,7 @@ const depositBundle: ActionBundle = await lendingPoolBundle.depositBundle({
amount,
onBehalfOf,
});

// Submit bundle components as shown in #bundle-methods section
```

</details>

Expand Down