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

Fix typos in documentation and code comments #1248

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
typos Vault.sol
Marcofann authored Jan 4, 2025
commit cafe37c7ea9381697b997e6f5047a0c9226bf73e
4 changes: 2 additions & 2 deletions defi/Alchemix/contracts/libraries/alchemist/Vault.sol
Original file line number Diff line number Diff line change
@@ -111,14 +111,14 @@ library Vault {
return _self.directWithdraw(_recipient, _withdrawAmount);
}

/// @dev Adds a element to the list.
/// @dev Adds an element to the list.
///
/// @param _element the element to add.
function push(List storage _self, Data memory _element) internal {
_self.elements.push(_element);
}

/// @dev Gets a element from the list.
/// @dev Gets an element from the list.
///
/// @param _index the index in the list.
///