diff --git a/src/ASP.sol b/src/ASP.sol index 90a54e0..499527a 100644 --- a/src/ASP.sol +++ b/src/ASP.sol @@ -7,7 +7,7 @@ contract ASP is RecordCategoryRegistry { constructor() RecordCategoryRegistry(msg.sender) {} /*////////////////////////////////////////////////////////////////////////// - ***PUBLIC FUNCTIONS*** + PUBLIC FUNCTIONS //////////////////////////////////////////////////////////////////////////*/ /** * @notice Applies a predicate to filter elements based on their properties @@ -61,7 +61,7 @@ contract ASP is RecordCategoryRegistry { } /*////////////////////////////////////////////////////////////////////////// - INTERNAL FUNCTIONS + INTERNAL FUNCTIONS //////////////////////////////////////////////////////////////////////////*/ /** * @notice Checks if an element satisfies a predicate based on its properties diff --git a/src/RecordCategoryRegistry.sol b/src/RecordCategoryRegistry.sol index 78c1e3e..5e49c88 100644 --- a/src/RecordCategoryRegistry.sol +++ b/src/RecordCategoryRegistry.sol @@ -83,7 +83,7 @@ contract RecordCategoryRegistry is AccessControlDefaultAdminRules { private _scopeRecordMerkleTrees; /*////////////////////////////////////////////////////////////////////////// - ***MODIFIERS*** + MODIFIERS //////////////////////////////////////////////////////////////////////////*/ /// @dev modifier to check that the caller has the admin role modifier AdminOnly() { @@ -103,7 +103,7 @@ contract RecordCategoryRegistry is AccessControlDefaultAdminRules { } /*////////////////////////////////////////////////////////////////////////// - ***CONTRACT CONSTRUCTOR*** + CONTRACT CONSTRUCTOR //////////////////////////////////////////////////////////////////////////*/ constructor( address _registryAdmin @@ -116,7 +116,7 @@ contract RecordCategoryRegistry is AccessControlDefaultAdminRules { } /*////////////////////////////////////////////////////////////////////////// - ***ADMIN FUNCTIONS*** + ADMIN FUNCTIONS //////////////////////////////////////////////////////////////////////////*/ /// @dev GrantRegistryAdminRole grants the REGISTRY_ADMIN_ROLE to an address /// @param account the address to grant the role to @@ -125,7 +125,7 @@ contract RecordCategoryRegistry is AccessControlDefaultAdminRules { } /*////////////////////////////////////////////////////////////////////////// - ***REGISTRY_ADMIN_ROLE FUNCTIONS*** + REGISTRY_ADMIN_ROLE FUNCTIONS //////////////////////////////////////////////////////////////////////////*/ /** * @notice Sets or updates the category for a record within a specific protocol scope @@ -160,7 +160,7 @@ contract RecordCategoryRegistry is AccessControlDefaultAdminRules { } /*////////////////////////////////////////////////////////////////////////// - ***GENERAL PUBLIC FUNCTIONS*** + GENERAL PUBLIC FUNCTIONS //////////////////////////////////////////////////////////////////////////*/ function getCategoryBitmap( uint256 scope,