Skip to content

Commit bbf02bd

Browse files
author
Rahul Maganti
committed
evm: reword bytes -> bits
1 parent ca0dd5c commit bbf02bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evm/src/libraries/TrimmedAmount.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
pragma solidity >=0.8.8 <0.9.0;
44

55
/// @dev TrimmedAmount is a bit-packed representation of a token amount and its decimals.
6-
/// @dev 64 bytes: [0 - 64] amount
7-
/// @dev 8 bytes: [64 - 72] decimals
6+
/// @dev 64 bits: [0 - 64] amount
7+
/// @dev 8 bits: [64 - 72] decimals
88
type TrimmedAmount is uint72;
99

1010
using {gt as >, lt as <, sub as -, add as +, eq as ==, min, unwrap} for TrimmedAmount global;

0 commit comments

Comments
 (0)