From 36fb1de9b0bd304b56d84faa15583263aa7ec44a Mon Sep 17 00:00:00 2001 From: katzman Date: Thu, 13 Jun 2024 15:01:03 -0700 Subject: [PATCH] Fmt --- src/L2/StablePriceOracle.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/L2/StablePriceOracle.sol b/src/L2/StablePriceOracle.sol index 054b820d..ea27e384 100644 --- a/src/L2/StablePriceOracle.sol +++ b/src/L2/StablePriceOracle.sol @@ -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. @@ -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];