diff --git a/contracts/utils/TransientSlot.sol b/contracts/utils/TransientSlot.sol index 25c57dd3f96..eabd718cb0d 100644 --- a/contracts/utils/TransientSlot.sol +++ b/contracts/utils/TransientSlot.sol @@ -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; @@ -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; @@ -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; @@ -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; @@ -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;