Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
neokry committed Aug 7, 2023
1 parent 682d317 commit 1b2bad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/manager/IManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface IManager is IUUPS, IOwnable {
/// @notice Emitted when an implementation is unregistered by the Builder DAO
/// @param implType The type of implementation
/// @param implAddress The implementation address
event ImplemenetationRemoved(uint8 implType, address implAddress);
event ImplementationRemoved(uint8 implType, address implAddress);

/// @notice Emitted when an upgrade is registered by the Builder DAO
/// @param baseImpl The base implementation address
Expand Down
2 changes: 1 addition & 1 deletion src/manager/Manager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ contract Manager is IManager, VersionedContract, UUPS, Ownable, ManagerStorageV1
if (_isInvalidImplementationType(_implType)) revert INVALID_IMPLEMENTATION_TYPE();
delete isImplementation[_implType][_implAddress];

emit ImplemenetationRemoved(_implType, _implAddress);
emit ImplementationRemoved(_implType, _implAddress);
}

/// ///
Expand Down

0 comments on commit 1b2bad0

Please sign in to comment.