@@ -352,7 +352,7 @@ abstract contract BlueprintStorageLayout is IBlueprintTypes {
352352 /**
353353 * @dev Defines the contract storage structure.
354354 *
355- * The fields :
355+ * Fields :
356356 *
357357 * - token ---------------- The address of the underlying token.
358358 * - operationalTreasury -- The address of the operational treasury.
@@ -367,11 +367,11 @@ abstract contract BlueprintStorageLayout is IBlueprintTypes {
367367 struct BlueprintStorage {
368368 // Slot 1
369369 address token;
370- // uint96 __reserved1; // Reserved for future use until the end of the storage slot
370+ // uint96 __reserved1; // Reserved until the end of the storage slot
371371
372372 // Slot 2
373373 address operationalTreasury;
374- // uint96 __reserved2; // Reserved for future use until the end of the storage slot
374+ // uint96 __reserved2; // Reserved until the end of the storage slot
375375
376376 // Slot 3
377377 mapping(bytes32 opId => Operation operation) operations;
@@ -422,7 +422,7 @@ abstract contract AccessControlExtUpgradeable is AccessControlUpgradeable {
422422 // ------------------ Initializers ---------------------------- //
423423
424424 /**
425- * @dev The unchained internal initializer of the upgradeable contract
425+ * @dev The unchained internal initializer of the upgradeable contract.
426426 *
427427 * See details: https://docs.openzeppelin.com/contracts/5.x/upgradeable#multiple-inheritance
428428 *
@@ -503,7 +503,7 @@ abstract contract PausableExtUpgradeable is AccessControlExtUpgradeable, Pausabl
503503 // ------------------ Initializers ---------------------------- //
504504
505505 /**
506- * @dev The unchained internal initializer of the upgradeable contract
506+ * @dev The unchained internal initializer of the upgradeable contract.
507507 *
508508 * See details: https://docs.openzeppelin.com/contracts/5.x/upgradeable#multiple-inheritance
509509 *
@@ -565,7 +565,7 @@ abstract contract RescuableUpgradeable is AccessControlExtUpgradeable {
565565 // ------------------ Initializers ---------------------------- //
566566
567567 /**
568- * @dev The unchained internal initializer of the upgradeable contract
568+ * @dev The unchained internal initializer of the upgradeable contract.
569569 *
570570 * See details: https://docs.openzeppelin.com/contracts/5.x/upgradeable#multiple-inheritance
571571 *
@@ -938,7 +938,7 @@ interface IBlueprintTypes {
938938 /**
939939 * @dev The data of a single operation of the blueprint smart-contract.
940940 *
941- * The fields :
941+ * Fields :
942942 *
943943 * - status --- The status of the operation according to the {OperationStatus} enum.
944944 * - account -- The address of the account involved in the operation.
@@ -948,13 +948,13 @@ interface IBlueprintTypes {
948948 OperationStatus status;
949949 address account;
950950 uint64 amount;
951- // uint24 __reserved; // Reserved for future use until the end of the storage slot
951+ // uint24 __reserved; // Reserved until the end of the storage slot
952952 }
953953
954954 /**
955955 * @dev The state of a single account within the blueprint smart-contract.
956956 *
957- * The fields :
957+ * Fields :
958958 *
959959 * - lastOpId -------- The identifier of the last operation related to the account.
960960 * - balance --------- The balance of the account.
@@ -968,7 +968,7 @@ interface IBlueprintTypes {
968968 // Slot 2
969969 uint64 balance;
970970 uint32 operationCount;
971- // uint160 __reserved; // Reserved for future use until the end of the storage slot
971+ // uint160 __reserved; // Reserved until the end of the storage slot
972972 }
973973}
974974```
@@ -991,7 +991,7 @@ interface IVersionable {
991991 /**
992992 * @dev Defines the version of a contract.
993993 *
994- * The fields :
994+ * Fields :
995995 *
996996 * - major -- The major version of the contract.
997997 * - minor -- The minor version of the contract.
@@ -1037,7 +1037,7 @@ contract AccessControlExtUpgradeableMock is AccessControlExtUpgradeable, UUPSUpg
10371037 // ------------------ Initializers ---------------------------- //
10381038
10391039 /**
1040- * @dev The initialize function of the upgradeable contract.
1040+ * @dev Initializer of the upgradeable contract.
10411041 *
10421042 * See details: https://docs.openzeppelin.com/upgrades-plugins/writing-upgradeable
10431043 */
@@ -1090,7 +1090,7 @@ contract PausableExtUpgradeableMock is PausableExtUpgradeable, UUPSUpgradeable {
10901090 // ------------------ Initializers ---------------------------- //
10911091
10921092 /**
1093- * @dev The initialize function of the upgradeable contract.
1093+ * @dev Initializer of the upgradeable contract.
10941094 *
10951095 * See details: https://docs.openzeppelin.com/upgrades-plugins/writing-upgradeable
10961096 */
@@ -1143,7 +1143,7 @@ contract RescuableUpgradeableMock is RescuableUpgradeable, UUPSUpgradeable {
11431143 // ------------------ Initializers ---------------------------- //
11441144
11451145 /**
1146- * @dev The initialize function of the upgradeable contract.
1146+ * @dev Initializer of the upgradeable contract.
11471147 *
11481148 * See details: https://docs.openzeppelin.com/upgrades-plugins/writing-upgradeable
11491149 */
@@ -1199,7 +1199,7 @@ contract UUPSExtUpgradeableMock is UUPSExtUpgradeable {
11991199 // ------------------ Initializers ---------------------------- //
12001200
12011201 /**
1202- * @dev The initialize function of the upgradeable contract.
1202+ * @dev Initializer of the upgradeable contract.
12031203 *
12041204 * See details: https://docs.openzeppelin.com/upgrades-plugins/writing-upgradeable
12051205 */
0 commit comments