Skip to content

Commit

Permalink
Update TransientSlot.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
GooseMatrix authored Feb 20, 2025
1 parent 17a379d commit 8cbc495
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/utils/TransientSlot.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pragma solidity ^0.8.24;
*/
library TransientSlot {
/**
* @dev UDVT that represent a slot holding a address.
* @dev UDVT that represents a slot holding a address.
*/
type AddressSlot is bytes32;

Expand All @@ -44,7 +44,7 @@ library TransientSlot {
}

/**
* @dev UDVT that represent a slot holding a bool.
* @dev UDVT that represents a slot holding a bool.
*/
type BooleanSlot is bytes32;

Expand All @@ -56,7 +56,7 @@ library TransientSlot {
}

/**
* @dev UDVT that represent a slot holding a bytes32.
* @dev UDVT that represents a slot holding a bytes32.
*/
type Bytes32Slot is bytes32;

Expand All @@ -68,7 +68,7 @@ library TransientSlot {
}

/**
* @dev UDVT that represent a slot holding a uint256.
* @dev UDVT that represents a slot holding a uint256.
*/
type Uint256Slot is bytes32;

Expand All @@ -80,7 +80,7 @@ library TransientSlot {
}

/**
* @dev UDVT that represent a slot holding a int256.
* @dev UDVT that represents a slot holding a int256.
*/
type Int256Slot is bytes32;

Expand Down

0 comments on commit 8cbc495

Please sign in to comment.