Skip to content

Commit

Permalink
revert previous change
Browse files Browse the repository at this point in the history
  • Loading branch information
larskuhtz committed Oct 25, 2024
1 parent e135ced commit ab8d0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pact/Runtime/Utils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ stripTermInfo = stripTerm' stripNameInfo
stripArgInfo f (Arg an argtyp _info) =
Arg an (stripTypeInfo f argtyp) def
stripMetaInfo (Meta docs model) =
Meta docs (def <$ model)
Meta docs (fmap (const def) <$> model)
stripAppInfo f (App af args _info) =
App (stripTerm' f af) (stripTerm' f <$> args) def
stripStepInfo f = \case
Expand Down

0 comments on commit ab8d0af

Please sign in to comment.