From 541af17222b89c096804ca90c521a941b370dba7 Mon Sep 17 00:00:00 2001 From: Abdul Sami J <61124358+abdulsamijay@users.noreply.github.com> Date: Mon, 2 May 2022 07:33:10 +0500 Subject: [PATCH] fix: fuse documentation typo. --- src/fuse/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fuse/README.md b/src/fuse/README.md index dfa6601e..3c7debc9 100644 --- a/src/fuse/README.md +++ b/src/fuse/README.md @@ -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. @@ -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.