diff --git a/src/account/AccountFactory.sol b/src/account/AccountFactory.sol index 362c6ad7..bd9662ee 100644 --- a/src/account/AccountFactory.sol +++ b/src/account/AccountFactory.sol @@ -27,8 +27,8 @@ contract AccountFactory is Ownable { } /** - * create an account, and return its address. - * returns the address even if the account is already deployed. + * Create an account, and return its address. + * Returns the address even if the account is already deployed. * Note that during user operation execution, this method is called only if the account is not deployed. * This method returns an existing account address so that entryPoint.getSenderAddress() would work even after * account creation @@ -61,7 +61,7 @@ contract AccountFactory is Ownable { } /** - * alculate the counterfactual address of this account as it would be returned by createAccount() + * Calculate the counterfactual address of this account as it would be returned by createAccount() */ function getAddress(address owner, uint256 salt) public view returns (address) { return Create2.computeAddress(getSalt(owner, salt), _PROXY_BYTECODE_HASH);