Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Compilation, testing and formatting with [forge](https://book.getfoundry.sh/gett

## Audits

All audits are stored in the [audits](./audits/)' folder.
All audits are stored in the [audits](./audits/) folder.

## License

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IMorpho.sol
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ interface IMorphoBase {

/// @notice Supplies `assets` of collateral on behalf of `onBehalf`, optionally calling back the caller's
/// `onMorphoSupplyCollateral` function with the given `data`.
/// @dev Interest are not accrued since it's not required and it saves gas.
/// @dev Interest is not accrued since it's not required and it saves gas.
/// @dev Supplying a large amount can revert for overflow.
/// @param marketParams The market to supply collateral to.
/// @param assets The amount of collateral to supply.
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/ErrorsLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ library ErrorsLib {
/// @notice Thrown when the market is not created.
string internal constant MARKET_NOT_CREATED = "market not created";

/// @notice Thrown when not exactly one of the input amount is zero.
/// @notice Thrown when not exactly one of the input amounts is zero.
string internal constant INCONSISTENT_INPUT = "inconsistent input";

/// @notice Thrown when zero assets is passed as input.
Expand Down