Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix spelling issues #129

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ethereum/contracts/Facets/BoolFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ contract BoolFacet is
return boolFee;
}

/// @dev Get remain gas for transfer
/// @dev Get remaining gas for transfer
function getBoolTransferGas() public view returns (uint256) {
Storage storage s = getStorage();
address soFee = appStorage.gatewaySoFeeSelectors[s.boolSwapRouter];
Expand Down
2 changes: 1 addition & 1 deletion ethereum/contracts/Facets/CCTPFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ contract CCTPFacet is Swapper, ReentrancyGuard, IMessageHandler {
swapDataDstNo
);

// cross-chain loss not exist in burn-mint mode
// cross-chain loss does not exist in burn-mint mode
uint256 amount = soData.amount;

uint256 soFee = getCCTPSoFee(amount);
Expand Down
2 changes: 1 addition & 1 deletion ethereum/contracts/Facets/DexManagerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract DexManagerFacet {
}

/// @notice Register the correct swap impl address for different swap router
/// @param correctSwap address that implement the modification of this swap
/// @param correctSwap address that implements the modification of this swap
function addCorrectSwap(address correctSwap) external {
LibDiamond.enforceIsContractOwner();
appStorage.correctSwapRouterSelectors = correctSwap;
Expand Down