Skip to content

Commit 91130e4

Browse files
committed
Fix a silly mistake
1 parent f61d03f commit 91130e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Language/PureScript/Pretty/Values.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,5 +219,5 @@ prettyPrintBinder :: Binder -> String
219219
prettyPrintBinder (ConstructorBinder ctor []) = showQualified runProperName ctor
220220
prettyPrintBinder (ConstructorBinder ctor args) = showQualified runProperName ctor ++ " " ++ unwords (map prettyPrintBinderAtom args)
221221
prettyPrintBinder (PositionedBinder _ _ binder) = prettyPrintBinder binder
222-
prettyPrintBinder (TypedBinder ty binder) = prettyPrintType ty ++ " :: " ++ prettyPrintBinder binder
222+
prettyPrintBinder (TypedBinder ty binder) = prettyPrintBinder binder ++ " :: " ++ prettyPrintType ty
223223
prettyPrintBinder b = prettyPrintBinderAtom b

0 commit comments

Comments
 (0)