Skip to content

Commit

Permalink
Fix indentation (#9285)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-chrzan authored Mar 8, 2022
1 parent ca4afce commit 7828bd6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions packages/protocol/contracts/stability/ExchangeBRL.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import "./Exchange.sol";

contract ExchangeBRL is Exchange {
/**
* @notice Sets initialized == true on implementation contracts
* @param test Set to true to skip implementation initialization
*/
* @notice Sets initialized == true on implementation contracts
* @param test Set to true to skip implementation initialization
*/
constructor(bool test) public Exchange(test) {}

/**
* @notice Returns the storage, major, minor, and patch version of the contract.
* @dev This function is overloaded to maintain a distinct version from Exchange.sol.
* @return The storage, major, minor, and patch version of the contract.
*/
* @notice Returns the storage, major, minor, and patch version of the contract.
* @dev This function is overloaded to maintain a distinct version from Exchange.sol.
* @return The storage, major, minor, and patch version of the contract.
*/
function getVersionNumber() external pure returns (uint256, uint256, uint256, uint256) {
return (1, 1, 0, 0);
}
Expand Down
14 changes: 7 additions & 7 deletions packages/protocol/contracts/stability/StableTokenBRL.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import "./StableToken.sol";

contract StableTokenBRL is StableToken {
/**
* @notice Sets initialized == true on implementation contracts.
* @param test Set to true to skip implementation initialization.
*/
* @notice Sets initialized == true on implementation contracts.
* @param test Set to true to skip implementation initialization.
*/
constructor(bool test) public StableToken(test) {}

/**
* @notice Returns the storage, major, minor, and patch version of the contract.
* @dev This function is overloaded to maintain a distinct version from StableToken.sol.
* @return The storage, major, minor, and patch version of the contract.
*/
* @notice Returns the storage, major, minor, and patch version of the contract.
* @dev This function is overloaded to maintain a distinct version from StableToken.sol.
* @return The storage, major, minor, and patch version of the contract.
*/
function getVersionNumber() external pure returns (uint256, uint256, uint256, uint256) {
return (1, 1, 0, 0);
}
Expand Down

0 comments on commit 7828bd6

Please sign in to comment.