Skip to content

Commit

Permalink
doc: update inline documentation header for AFees and AOperator
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtekgrinder authored and 0xmemorygrinder committed Sep 5, 2023
1 parent 59b3e49 commit 6095823
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions contracts/src/abstracts/AFees.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { Owned2Step } from "../utils/Owned2Step.sol";
import { Errors } from "../utils/Errors.sol";

/// @author 0xtekgrinder
/// @title Fees contract
/// @notice contract to manage fees
/// @title AFees
/// @notice Abstract contract to allow access only to operator or owner
abstract contract AFees is Owned2Step {
/*//////////////////////////////////////////////////////////////
EVENTS
Expand Down
8 changes: 3 additions & 5 deletions contracts/src/abstracts/AOperator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ pragma solidity 0.8.20;
import { Errors } from "../utils/Errors.sol";
import { Owned2Step } from "../utils/Owned2Step.sol";

/**
* @title AOperator contract
* @notice Provide operator checking
* @author 0xMemoryGrinder
*/
/// @author 0xtekgrinder
/// @title AOperator
/// @notice Abstract contract to allow access only to operator or owner
abstract contract AOperator is Owned2Step {
/*//////////////////////////////////////////////////////////////
EVENTS
Expand Down

0 comments on commit 6095823

Please sign in to comment.