styling consistency

This commit is contained in:
tim
2025-10-15 11:19:36 -04:00
parent 7ac4cdc8f6
commit ead004d631
18 changed files with 275 additions and 281 deletions

View File

@@ -16,7 +16,7 @@ abstract contract ERC20Internal is Context, IERC20Errors {
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
* @dev Moves a `value` amount of _tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
@@ -36,7 +36,7 @@ abstract contract ERC20Internal is Context, IERC20Errors {
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* @dev Transfers a `value` amount of _tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
@@ -73,7 +73,7 @@ abstract contract ERC20Internal is Context, IERC20Errors {
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* @dev Creates a `value` amount of _tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
@@ -88,7 +88,7 @@ abstract contract ERC20Internal is Context, IERC20Errors {
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* @dev Destroys a `value` amount of _tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
@@ -103,7 +103,7 @@ abstract contract ERC20Internal is Context, IERC20Errors {
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
* @dev Sets `value` as the allowance of `spender` over the `owner`'s _tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.