From 7f21b79ec0eaf88be00ddee24d7e7ae69bad43b9 Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Thu, 2 Feb 2023 11:34:08 +0100 Subject: [PATCH] Update contracts/interfaces/IERC5313.sol MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ernesto GarcĂ­a --- contracts/interfaces/IERC5313.sol | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/contracts/interfaces/IERC5313.sol b/contracts/interfaces/IERC5313.sol index e3caa3a0839..2c9a47da96e 100644 --- a/contracts/interfaces/IERC5313.sol +++ b/contracts/interfaces/IERC5313.sol @@ -2,9 +2,16 @@ pragma solidity ^0.8.0; -/// @title EIP-5313 Light Contract Ownership Standard +/** + * @dev Interface for the Light Contract Ownership Standard. + * + * A standardized minimal interface required to identify an account that controls a contract + * + * _Available since v4.9._ + */ interface IERC5313 { - /// @notice Get the address of the owner - /// @return The address of the owner + /** + * @dev Gets the address of the owner. + */ function owner() external view returns (address); }