Skip to content

Commit

Permalink
fix: fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Sep 3, 2024
1 parent 03e8225 commit a484911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contracts/interfaces/IPoolConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -153,15 +153,15 @@ interface IPoolConfigurator {
* @dev Emitted when an collateral configuration of an asset in an eMode is changed.
* @param asset The address of the underlying asset of the reserve
* @param categoryId The eMode category
* @param collateral True if the asset was enabled as collateral in the eMode, false otherwise.
* @param collateral True if the asset is enabled as collateral in the eMode, false otherwise.
*/
event AssetCollateralInEModeChanged(address indexed asset, uint8 categoryId, bool collateral);

/**
* @dev Emitted when the borrowable configuration of an asset in an eMode changed.
* @param asset The address of the underlying asset of the reserve
* @param categoryId The eMode category
* @param borrowable True if the asset was enabled as borrowable in the eMode, false otherwise.
* @param borrowable True if the asset is enabled as borrowable in the eMode, false otherwise.
*/
event AssetBorrowableInEModeChanged(address indexed asset, uint8 categoryId, bool borrowable);

Expand Down

0 comments on commit a484911

Please sign in to comment.