Skip to content

Commit

Permalink
fix: update Twitter URL to x.com format
Browse files Browse the repository at this point in the history
Replaced the outdated Twitter URL (https://twitter.com) with the updated x.com format (https://x.com) to align with the platform's rebranding.
  • Loading branch information
sergeypanin1994 committed Jan 14, 2025
1 parent 782f519 commit 65f008f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions contracts/protocol/libraries/math/PercentageMath.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ library PercentageMath {

/**
* @notice Executes a percentage multiplication
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param value The value of which the percentage needs to be calculated
* @param percentage The percentage of the value to be calculated
* @return result value percentmul percentage
Expand All @@ -40,7 +40,7 @@ library PercentageMath {

/**
* @notice Executes a percentage division
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param value The value of which the percentage needs to be calculated
* @param percentage The percentage of the value to be calculated
* @return result value percentdiv percentage
Expand Down
12 changes: 6 additions & 6 deletions contracts/protocol/libraries/math/WadRayMath.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ library WadRayMath {

/**
* @dev Multiplies two wad, rounding half up to the nearest wad
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param a Wad
* @param b Wad
* @return c = a*b, in wad
Expand All @@ -39,7 +39,7 @@ library WadRayMath {

/**
* @dev Divides two wad, rounding half up to the nearest wad
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param a Wad
* @param b Wad
* @return c = a/b, in wad
Expand All @@ -57,7 +57,7 @@ library WadRayMath {

/**
* @notice Multiplies two ray, rounding half up to the nearest ray
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param a Ray
* @param b Ray
* @return c = a raymul b
Expand All @@ -75,7 +75,7 @@ library WadRayMath {

/**
* @notice Divides two ray, rounding half up to the nearest ray
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param a Ray
* @param b Ray
* @return c = a raydiv b
Expand All @@ -93,7 +93,7 @@ library WadRayMath {

/**
* @dev Casts ray down to wad
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param a Ray
* @return b = a converted to wad, rounded half up to the nearest wad
*/
Expand All @@ -109,7 +109,7 @@ library WadRayMath {

/**
* @dev Converts wad up to ray
* @dev assembly optimized for improved gas savings, see https://twitter.com/transmissions11/status/1451131036377571328
* @dev assembly optimized for improved gas savings, see https://x.com/transmissions11/status/1451131036377571328
* @param a Wad
* @return b = a converted in ray
*/
Expand Down

0 comments on commit 65f008f

Please sign in to comment.