Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
justingreenberg committed Nov 18, 2023
1 parent 3bff191 commit 8f5ce7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Starport.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ contract Starport is PausableNonReentrant {
emit ApprovalSet(msg.sender, who, uint8(approvalType));
}

/**
/**
* @dev The loan origination method, new loan data is passed in and validated before being issued
* @param additionalTransfers Additional transfers to be made after the loan is issued
* @param borrowerCaveat The borrower caveat to be validated
Expand Down
2 changes: 1 addition & 1 deletion src/enforcers/BorrowerEnforcer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract BorrowerEnforcer is CaveatEnforcer {
struct Details {
Starport.Loan loan;
}

/**
* @dev Enforces that the loan terms are identical except for the issuer
* The issuer is allowed to be any address
Expand Down
4 changes: 2 additions & 2 deletions src/originators/Originator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
pragma solidity ^0.8.17;

import {Starport} from "starport-core/Starport.sol";
import {CaveatEnforcer} from "starport-core/enforcers/CaveatEnforcer.sol"
;
import {CaveatEnforcer} from "starport-core/enforcers/CaveatEnforcer.sol";

import {SpentItem} from "seaport-types/src/lib/ConsiderationStructs.sol";

abstract contract Originator {
Expand Down

0 comments on commit 8f5ce7d

Please sign in to comment.