diff --git a/src/IdGateway.sol b/src/IdGateway.sol index 32a2a366..b2d44daa 100644 --- a/src/IdGateway.sol +++ b/src/IdGateway.sol @@ -62,7 +62,7 @@ contract IdGateway is IIdGateway, Guardians, Signatures, EIP712, Nonces { * Set the owner of the contract to the provided _owner. * * @param _idRegistry IdRegistry address. - * @param _storageRegistry StorageRegistery address. + * @param _storageRegistry StorageRegistry address. * @param _initialOwner Initial owner address. * */ diff --git a/src/KeyGateway.sol b/src/KeyGateway.sol index a20fb1cb..21a00680 100644 --- a/src/KeyGateway.sol +++ b/src/KeyGateway.sol @@ -50,7 +50,7 @@ contract KeyGateway is IKeyGateway, Guardians, Signatures, EIP712, Nonces { * Set the initial owner address. * * @param _keyRegistry Address of the KeyRegistry contract. - * @param _initialOwner Address of the inital owner. + * @param _initialOwner Address of the initial owner. */ constructor( address _keyRegistry, diff --git a/src/StorageRegistry.sol b/src/StorageRegistry.sol index 2b8bb687..b6e46048 100644 --- a/src/StorageRegistry.sol +++ b/src/StorageRegistry.sol @@ -87,7 +87,7 @@ contract StorageRegistry is IStorageRegistry, AccessControlEnumerable, Pausable /// @dev Revert if transferred to the zero address. error InvalidAddress(); - /// @dev Revert if the caller attempts a continuous credit withan invalid range. + /// @dev Revert if the caller attempts a continuous credit with an invalid range. error InvalidRangeInput(); /*//////////////////////////////////////////////////////////////