docs: fixed comments for isUserPermissionAdminValid

This commit is contained in:
The3D 2021-06-25 14:06:10 +02:00
parent 0d7982d9a1
commit a5b3e0f122

View File

@ -74,9 +74,9 @@ interface IPermissionManager {
function getUserPermissionAdmin(address user) external view returns (address);
/**
* @dev Used to query if the permission admin of a certain user is valid,
* @dev Used to query if the permission admin of a certain user is valid
* @param user The address of the user
* @return true if the permission admin of a certain user is valid, false otherwise
* @return true if the permission admin of user is valid, false otherwise
**/
function isUserPermissionAdminValid(address user) external view returns (bool);
}