We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5d57ef commit c20183eCopy full SHA for c20183e
contracts/access/ownable/Ownable.sol
@@ -3,7 +3,6 @@
3
pragma solidity ^0.8.20;
4
5
import { IERC173 } from '../../interfaces/IERC173.sol';
6
-import { IERC5313 } from '../../interfaces/IERC5313.sol';
7
import { IOwnable } from './IOwnable.sol';
8
import { _Ownable } from './_Ownable.sol';
9
@@ -12,7 +11,7 @@ import { _Ownable } from './_Ownable.sol';
12
11
*/
13
abstract contract Ownable is IOwnable, _Ownable {
14
/**
15
- * @inheritdoc IERC5313
+ * @inheritdoc IERC173
16
17
function owner() external view returns (address) {
18
return _owner();
0 commit comments