Skip to content

Commit

Permalink
Appeased the nit gods
Browse files Browse the repository at this point in the history
  • Loading branch information
jalextowle committed May 2, 2024
1 parent 76cc959 commit cc47823
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/src/deployers/erc4626/ERC4626Target5Deployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { IHyperdrive } from "../../interfaces/IHyperdrive.sol";
import { IHyperdriveTargetDeployer } from "../../interfaces/IHyperdriveTargetDeployer.sol";

/// @author DELV
/// @title ERC4626Target4Deployer
/// @title ERC4626Target5Deployer
/// @notice The target5 deployer for the ERC4626Hyperdrive implementation.
/// @custom:disclaimer The language used in this code is for coding convenience
/// only, and is not intended to, and does not, have any
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/deployers/reth/RETHTarget5Deployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contract RETHTarget5Deployer is IHyperdriveTargetDeployer {
/// @notice Deploys a target5 instance with the given parameters.
/// @param _config The configuration of the Hyperdrive pool.
/// @param _salt The create2 salt used in the deployment.
/// @return The address of the newly deployed RETHTarget4 instance.
/// @return The address of the newly deployed RETHTarget5 instance.
function deploy(
IHyperdrive.PoolConfig memory _config,
bytes memory, // unused extra data
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/instances/reth/RETHTarget5.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { RETHBase } from "./RETHBase.sol";
/// only, and is not intended to, and does not, have any
/// particular legal or regulatory significance.
contract RETHTarget5 is HyperdriveTarget5, RETHBase {
/// @notice Initializes the target4 contract.
/// @notice Initializes the target5 contract.
/// @param _config The configuration of the Hyperdrive pool.
constructor(
IHyperdrive.PoolConfig memory _config
Expand Down

0 comments on commit cc47823

Please sign in to comment.