Skip to content

Commit 53712b3

Browse files
committed
Uses fmap instead
1 parent 96bd4c9 commit 53712b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/tactics/src/Ide/Plugin/Tactic/CodeGen.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ dataConInstOrigArgTys' :: DataCon -> [Type] -> [Type]
127127
dataConInstOrigArgTys' con uniTys =
128128
let exvars = dataConExTys con
129129
in dataConInstOrigArgTys con $
130-
uniTys ++ map mkTyVarTy exvars
130+
uniTys ++ fmap mkTyVarTy exvars
131131

132132
------------------------------------------------------------------------------
133133
-- | Combinator for performing case splitting, and running sub-rules on the

0 commit comments

Comments
 (0)