Skip to content

Commit c20183e

Browse files
committed
remove IERC5313 reference from Ownable
1 parent e5d57ef commit c20183e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contracts/access/ownable/Ownable.sol

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
pragma solidity ^0.8.20;
44

55
import { IERC173 } from '../../interfaces/IERC173.sol';
6-
import { IERC5313 } from '../../interfaces/IERC5313.sol';
76
import { IOwnable } from './IOwnable.sol';
87
import { _Ownable } from './_Ownable.sol';
98

@@ -12,7 +11,7 @@ import { _Ownable } from './_Ownable.sol';
1211
*/
1312
abstract contract Ownable is IOwnable, _Ownable {
1413
/**
15-
* @inheritdoc IERC5313
14+
* @inheritdoc IERC173
1615
*/
1716
function owner() external view returns (address) {
1817
return _owner();

0 commit comments

Comments
 (0)