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: fuse documentation typo. #5

Open
wants to merge 1 commit into
base: main
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
4 changes: 2 additions & 2 deletions src/fuse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ function repayBorrow(uint repayAmount) returns (uint)
```

- `msg.sender`: The account which borrowed the asset, and shall repay the borrow.
- `repayAmount`: The amount of the underlying borrowed asset to be repaid. A value of -1 (i.e. 2256 - 1) can be used to repay the full amount.
- `repayAmount`: The amount of the underlying borrowed asset to be repaid. A value of -1 (i.e. 2 ** 256 - 1) can be used to repay the full amount.
- `RETURN`: 0 on success, otherwise an [Error code](#error-codes)

Before repaying an asset, users must first [approve](https://eips.ethereum.org/EIPS/eip-20#approve) the fToken to access their token balance.
Expand Down Expand Up @@ -315,7 +315,7 @@ function repayBorrowBehalf(address borrower, uint repayAmount) returns (uint)

- `msg.sender`: The account which shall repay the borrow.
- `borrower`: The account which borrowed the asset to be repaid.
- `repayAmount`: The amount of the underlying borrowed asset to be repaid. A value of -1 (i.e. 2256 - 1) can be used to repay the full amount.
- `repayAmount`: The amount of the underlying borrowed asset to be repaid. A value of -1 (i.e. 2 ** 256 - 1) can be used to repay the full amount.
- `RETURN`: 0 on success, otherwise an [Error code](#error-codes)

Before repaying an asset, users must first [approve](https://eips.ethereum.org/EIPS/eip-20#approve) the fToken to access their token balance.
Expand Down