Skip to content

Commit 8c53199

Browse files
committed
refactor: Update occurences
1 parent b2a7c9c commit 8c53199

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

contracts/facets/FacetBase.sol

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import "../interfaces/IOwnable.sol";
1010
// TODO clean this (use LibDiamond)
1111
// - All calls to `owner()` should use `LibDiamond.contractOwner()`.
1212

13+
/**
14+
* @title Base contract of all Facet contracts.
15+
* @dev Every facet must inherit from this contract.
16+
*/
1317
abstract contract FacetBase is Store {
1418
modifier onlyOwner() {
1519
require(_msgSender() == owner(), "Ownable: caller is not the owner");

contracts/facets/FacetBase.v8.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {Store} from "../Store.v8.sol";
1212

1313
/**
1414
* @title Base contract of all Facet contracts.
15-
* @dev Every module must inherit from this contract.
15+
* @dev Every facet must inherit from this contract.
1616
*/
1717
abstract contract FacetBase is Store {
1818
modifier onlyOwner() {

contracts/facets/IexecPocoAccessorsFacet.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {IexecPocoCommonFacet} from "./IexecPocoCommonFacet.sol";
1111
import {SignatureVerifier} from "./SignatureVerifier.v8.sol";
1212

1313
/**
14-
* @title Getters contract for PoCo module.
14+
* @title Getters contract for PoCo facets.
1515
*/
1616
contract IexecPocoAccessorsFacet is
1717
IexecPocoAccessors,
@@ -25,7 +25,7 @@ contract IexecPocoAccessorsFacet is
2525
using IexecLibOrders_v5 for IexecLibOrders_v5.RequestOrder;
2626

2727
/**
28-
* Get a deal created by PoCo module.
28+
* Get a deal created by PoCo classic facet.
2929
* @param id The ID of the deal.
3030
*/
3131
function viewDeal(bytes32 id) external view returns (IexecLibCore_v5.Deal memory deal) {

contracts/facets/IexecPocoBoostAccessorsFacet.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import {FacetBase} from "./FacetBase.v8.sol";
88
import {IexecPocoBoostAccessors} from "../interfaces/IexecPocoBoostAccessors.sol";
99

1010
/**
11-
* @title Getters contract for PoCo Boost module.
11+
* @title Getters contract for PoCo Boost facet.
1212
* @notice Access to PoCo Boost tasks must be done with PoCo Classic `IexecAccessors`.
1313
*/
1414
contract IexecPocoBoostAccessorsFacet is IexecPocoBoostAccessors, FacetBase {
1515
/**
16-
* Get a deal created by PoCo Boost module.
16+
* Get a deal created by PoCo Boost facet.
1717
* @param id The ID of the deal.
1818
*/
1919
function viewDealBoost(

contracts/interfaces/IexecPocoBoost.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pragma solidity ^0.8.0;
66
import {IexecLibOrders_v5} from "../libs/IexecLibOrders_v5.sol";
77

88
/**
9-
* @title Interface definition of the PoCo Boost module.
9+
* @title Interface definition of the PoCo Boost facet.
1010
*/
1111
interface IexecPocoBoost {
1212
/**

0 commit comments

Comments
 (0)