Skip to content

Commit d414c3b

Browse files
authored
fix: errors in description lines of the code (#433)
Improved
1 parent 1445855 commit d414c3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/IdGateway.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ contract IdGateway is IIdGateway, Guardians, Signatures, EIP712, Nonces {
6262
* Set the owner of the contract to the provided _owner.
6363
*
6464
* @param _idRegistry IdRegistry address.
65-
* @param _storageRegistry StorageRegistery address.
65+
* @param _storageRegistry StorageRegistry address.
6666
* @param _initialOwner Initial owner address.
6767
*
6868
*/

src/KeyGateway.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ contract KeyGateway is IKeyGateway, Guardians, Signatures, EIP712, Nonces {
5050
* Set the initial owner address.
5151
*
5252
* @param _keyRegistry Address of the KeyRegistry contract.
53-
* @param _initialOwner Address of the inital owner.
53+
* @param _initialOwner Address of the initial owner.
5454
*/
5555
constructor(
5656
address _keyRegistry,

src/StorageRegistry.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ contract StorageRegistry is IStorageRegistry, AccessControlEnumerable, Pausable
8787
/// @dev Revert if transferred to the zero address.
8888
error InvalidAddress();
8989

90-
/// @dev Revert if the caller attempts a continuous credit withan invalid range.
90+
/// @dev Revert if the caller attempts a continuous credit with an invalid range.
9191
error InvalidRangeInput();
9292

9393
/*//////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)