Browse Source

Improve docs wording on constructors and proxies (#2935)

Bogdan A 3 years ago
parent
commit
52d42d6e03
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/proxy/utils/Initializable.sol

+ 1 - 1
contracts/proxy/utils/Initializable.sol

@@ -5,7 +5,7 @@ pragma solidity ^0.8.0;
 
 /**
  * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
- * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
+ * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
  * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
  * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
  *