Skip to content

Commit b31004d

Browse files
authored
Add Haddock for expmod (#7493)
1 parent 13ee473 commit b31004d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plutus-tx/src/PlutusTx/Builtins.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -920,12 +920,12 @@ replicateByte
920920
replicateByte = BI.replicateByte
921921
{-# INLINEABLE replicateByte #-}
922922

923-
{-| FIXME(https://github.com/IntersectMBO/plutus-private/issues/1609):
923+
{-| Modular exponentiation primitive, as defined in CIP-0109.
924924
925925
= See also
926926
927927
* [Operation
928-
description](https://github.com/cardano-foundation/CIPs/tree/master/CIP-0109) -}
928+
description](https://cips.cardano.org/cip/CIP-0109) -}
929929
expModInteger
930930
:: Integer
931931
-> Integer

plutus-tx/src/PlutusTx/Prelude.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ modulo :: Integer -> Integer -> Integer
274274
modulo = Builtins.modInteger
275275
{-# INLINEABLE modulo #-}
276276

277-
-- | FIXME (https://github.com/IntersectMBO/plutus-private/issues/1729)
277+
-- | Modular exponentiation, as defined in CIP-0109.
278278
expMod :: Integer -> Integer -> Integer -> Integer
279279
expMod = Builtins.expModInteger
280280
{-# INLINEABLE expMod #-}

0 commit comments

Comments
 (0)