diff --git a/contracts/SpokePool.sol b/contracts/SpokePool.sol index c8cc1c05a..89b742ecb 100644 --- a/contracts/SpokePool.sol +++ b/contracts/SpokePool.sol @@ -613,7 +613,7 @@ abstract contract SpokePool is } /** - * @notice An overloaded version of `unsafeDepositV3` that accepts `address` types for backward compatibility. * + * @notice An overloaded version of `unsafeDepositV3` that accepts `address` types for backward compatibility. * @dev This version mirrors the original `unsafeDepositV3` function, but uses `address` types for `depositor`, `recipient`, * `inputToken`, `outputToken`, and `exclusiveRelayer` for compatibility with contracts using the `address` type. * @@ -1294,7 +1294,7 @@ abstract contract SpokePool is /** * @notice Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID * in unsafeDepositV3 and is provided as a convenience. - * @dev msgSenderand depositor are both used as inputs to allow passthrough depositors to create unique + * @dev msgSender and depositor are both used as inputs to allow passthrough depositors to create unique * deposit hash spaces for unique depositors. * @param msgSender The caller of the transaction used as input to produce the deposit ID. * @param depositor The depositor address used as input to produce the deposit ID. @@ -1499,7 +1499,7 @@ abstract contract SpokePool is bool success = _noRevertTransfer(l2TokenAddress, refundAddresses[i], refundAmounts[i]); // If the transfer failed then track a deferred transfer for the relayer. Given this function would - // have revered if there was insufficient balance, this will only happen if the transfer call + // have reverted if there was insufficient balance, this will only happen if the transfer call // reverts. This will only occur if the underlying transfer method on the l2Token reverts due to // recipient blacklisting or other related modifications to the l2Token.transfer method. if (!success) {