Skip to content

Commit

Permalink
docs(protocol): fix typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpion9979 committed Jan 20, 2023
1 parent 6c17a4d commit f1b338b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/protocol/contracts/core/fintroller/IFintroller.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ interface IFintroller is IOwnable {

/// @notice Emitted when a new max bonds value is set.
/// @param owner The address indexed owner.
/// @param oldMaxBonds The address of the old max bonds value.
/// @param newMaxBonds The address of the new max bonds value.
/// @param oldMaxBonds The old max bonds value.
/// @param newMaxBonds The new max bonds value.
event SetMaxBonds(address indexed owner, uint256 oldMaxBonds, uint256 newMaxBonds);

/// @notice Emitted when a new max collaterals value is set.
/// @param owner The address indexed owner.
/// @param oldMaxCollaterals The address of the old max collaterals value.
/// @param newMaxCollaterals The address of the new max collaterals value.
/// @param oldMaxCollaterals The old max collaterals value.
/// @param newMaxCollaterals The new max collaterals value.
event SetMaxCollaterals(address indexed owner, uint256 oldMaxCollaterals, uint256 newMaxCollaterals);

/// @notice Emitted when the repay borrow permission is updated.
Expand Down

0 comments on commit f1b338b

Please sign in to comment.