@@ -6,17 +6,17 @@ pragma solidity >=0.8.0 <0.9.0;
66import  "../patterns/ERC165.sol " ;
77import  "../patterns/Ownable2Step.sol " ;
88import  "../patterns/ReentrancyGuard.sol " ;
9- import  "../patterns/Upgradable .sol " ;
9+ import  "../patterns/Upgradeable .sol " ;
1010
1111import  "./WitnetProxy.sol " ;
1212
13- /// @title Witnet Request Board base contract, with an Upgradable  (and Destructible) touch. 
13+ /// @title Witnet Request Board base contract, with an Upgradeable  (and Destructible) touch. 
1414/// @author The Witnet Foundation. 
1515abstract  contract  WitnetUpgradableBase 
1616    is 
1717        ERC165 ,
1818        Ownable2Step ,
19-         Upgradable , 
19+         Upgradeable , 
2020        ReentrancyGuard 
2121{
2222    bytes32  internal  immutable  _WITNET_UPGRADABLE_VERSION;
@@ -31,7 +31,7 @@ abstract contract WitnetUpgradableBase
3131            bytes32  _versionTag ,
3232            string  memory  _proxiableUUID 
3333        )
34-         Upgradable (_upgradable)
34+         Upgradeable (_upgradable)
3535    {
3636        _WITNET_UPGRADABLE_VERSION =  _versionTag;
3737        proxiableUUID =  keccak256 (bytes (_proxiableUUID));
@@ -55,21 +55,21 @@ abstract contract WitnetUpgradableBase
5555      returns  (bool )
5656    {
5757        return  _interfaceId ==  type (Ownable2Step).interfaceId
58-             ||  _interfaceId ==  type (Upgradable ).interfaceId
58+             ||  _interfaceId ==  type (Upgradeable ).interfaceId
5959            ||  super .supportsInterface (_interfaceId);
6060    }
6161
6262    // ================================================================================================================ 
6363    // --- Overrides 'Proxiable' -------------------------------------------------------------------------------------- 
6464
65-     /// @dev Gets immutable "heritage blood line" (ie. genotype) as a Proxiable, and eventually Upgradable , contract. 
66-     ///      If implemented as an Upgradable  touch, upgrading this contract to another one with a different  
65+     /// @dev Gets immutable "heritage blood line" (ie. genotype) as a Proxiable, and eventually Upgradeable , contract. 
66+     ///      If implemented as an Upgradeable  touch, upgrading this contract to another one with a different  
6767    ///      `proxiableUUID()` value should fail. 
6868    bytes32  public  immutable  override  proxiableUUID;
6969
7070
7171    // ================================================================================================================ 
72-     // --- Overrides 'Upgradable ' -------------------------------------------------------------------------------------- 
72+     // --- Overrides 'Upgradeable ' -------------------------------------------------------------------------------------- 
7373
7474    /// Retrieves human-readable version tag of current implementation. 
7575    function version  () public  view  override  returns  (string  memory ) {
0 commit comments