We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f61d03f commit 91130e4Copy full SHA for 91130e4
src/Language/PureScript/Pretty/Values.hs
@@ -219,5 +219,5 @@ prettyPrintBinder :: Binder -> String
219
prettyPrintBinder (ConstructorBinder ctor []) = showQualified runProperName ctor
220
prettyPrintBinder (ConstructorBinder ctor args) = showQualified runProperName ctor ++ " " ++ unwords (map prettyPrintBinderAtom args)
221
prettyPrintBinder (PositionedBinder _ _ binder) = prettyPrintBinder binder
222
-prettyPrintBinder (TypedBinder ty binder) = prettyPrintType ty ++ " :: " ++ prettyPrintBinder binder
+prettyPrintBinder (TypedBinder ty binder) = prettyPrintBinder binder ++ " :: " ++ prettyPrintType ty
223
prettyPrintBinder b = prettyPrintBinderAtom b
0 commit comments