Skip to content

Commit

Permalink
Fix small nit
Browse files Browse the repository at this point in the history
  • Loading branch information
garyghayrat committed Oct 18, 2023
1 parent e159a53 commit 4ca5c32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/CreatorTokenSwapRouter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract CreatorTokenSwapRouter {

/// @notice Buys a Creator Token with ETH from the caller.
/// @dev Requires an ETH payment that is equal to or greater than the amount of USDC required to
/// purchase a creator Token.
/// purchase a creator token.
/// @dev You can get a quote for the amount of ETH you have to pay to get a certain amount of USDC
/// by calling Uniswap's `QuoterV2` contract off-chain. Check Uniswap docs:
/// https://docs.uniswap.org/contracts/v3/reference/periphery/lens/QuoterV2 and `quote` function
Expand All @@ -59,7 +59,7 @@ contract CreatorTokenSwapRouter {

/// @notice Buys creator tokens with ETH and sends them to a specified address.
/// @dev Requires an ETH payment that is equal to or greater than the amount of USDC required to
/// purchase a creator Token.
/// purchase a creator token.
/// @dev You can get a quote for the amount of ETH you have to pay to get a certain amount of USDC
/// by calling Uniswap's `QuoterV2` contract off-chain. Check Uniswap docs:
/// https://docs.uniswap.org/contracts/v3/reference/periphery/lens/QuoterV2 and `quote` function
Expand All @@ -80,7 +80,7 @@ contract CreatorTokenSwapRouter {

/// @notice Buys a specified number of creator tokens with ETH and sends them to the caller.
/// @dev Requires an ETH payment that is equal to or greater than the amount of USDC required to
/// purchase a creator Token.
/// purchase `_numOfTokens` of creator tokens.
/// @dev You can get a quote for the amount of ETH you have to pay to get a certain amount of USDC
/// by calling Uniswap's `QuoterV2` contract off-chain. Check Uniswap docs:
/// https://docs.uniswap.org/contracts/v3/reference/periphery/lens/QuoterV2 and `quote` function
Expand All @@ -100,7 +100,7 @@ contract CreatorTokenSwapRouter {
/// @notice Buys a specified number of creator tokens with ETH and sends them to a specified
/// address.
/// @dev Requires an ETH payment that is equal to or greater than the amount of USDC required to
/// purchase a creator Token.
/// purchase `_numOfTokens` of creator tokens.
/// @dev You can get a quote for the amount of ETH you have to pay to get a certain amount of USDC
/// by calling Uniswap's `QuoterV2` contract off-chain. Check Uniswap docs:
/// https://docs.uniswap.org/contracts/v3/reference/periphery/lens/QuoterV2 and `quote` function
Expand Down

0 comments on commit 4ca5c32

Please sign in to comment.