Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieraykatz committed Jun 13, 2024
1 parent 89970a5 commit 36fb1de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/L2/StablePriceOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ contract StablePriceOracle is IPriceOracle {
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* STORAGE */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

/// @notice The price for a 1 letter name per second.
uint256 public immutable price1Letter;

/// @notice The price for a 2 letter name per second.
/// @notice The price for a 2 letter name per second.
uint256 public immutable price2Letter;

/// @notice The price for a 3 letter name per second.
Expand All @@ -39,8 +39,8 @@ contract StablePriceOracle is IPriceOracle {
uint256 public immutable price10Letter;

/// @notice Price Oracle constructor which sets the immutably stored prices.
///
/// @param _rentPrices An array of prices orderd in increasing length.
///
/// @param _rentPrices An array of prices orderd in increasing length.
constructor(uint256[] memory _rentPrices) {
price1Letter = _rentPrices[0];
price2Letter = _rentPrices[1];
Expand Down

0 comments on commit 36fb1de

Please sign in to comment.