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

chore: remove repetitive words #1085

Merged
merged 1 commit into from
Apr 7, 2024
Merged
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 basic/21-aave-uni-loan/contracts/interfaces/IAToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ interface IAToken is IERC20, IScaledBalanceToken, IInitializableAToken {
* @param onBehalfOf The address of the user that will receive the minted aTokens
* @param amount The amount of tokens getting minted
* @param index The next liquidity index of the reserve
* @return `true` if the the previous balance of the user was 0
* @return `true` if the previous balance of the user was 0
*/
function mint(
address caller,
Expand Down
2 changes: 1 addition & 1 deletion basic/23-erc865-and-erc875/contracts/erc404/ERC404.sol
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ abstract contract ERC404 is Ownable {
_owned[from].pop();
// update index for the moved id
_ownedIndex[updatedId] = _ownedIndex[amountOrId];
// push token to to owned
// push token to owned
_owned[to].push(amountOrId);
// update index for to owned
_ownedIndex[amountOrId] = _owned[to].length - 1;
Expand Down
2 changes: 1 addition & 1 deletion defi/Uniswap-V3/contractGuide/UniswapV3Pool.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ struct StepComputations {
// sqrt(price) for the next tick (1/0)
// 目标价格(根号)
uint160 sqrtPriceNextX96;
// how much is being swapped in in this step
// how much is being swapped in this step
// 当前步交易了多少输入token
uint256 amountIn;
// how much is being swapped out
Expand Down
Loading