Skip to content

Commit 648fdb9

Browse files
int-indextreeowl
authored andcommitted
Add whitespace in: fmap ($x)
1 parent 2c44e9d commit 648fdb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

containers/src/Data/Sequence/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ apSeq fs xs@(Seq xsFT) = case viewl fs of
523523
EmptyR -> fmap firstf xs
524524
Seq fs''FT :> lastf -> case rigidify xsFT of
525525
RigidEmpty -> empty
526-
RigidOne (Elem x) -> fmap ($x) fs
526+
RigidOne (Elem x) -> fmap ($ x) fs
527527
RigidTwo (Elem x1) (Elem x2) ->
528528
Seq $ ap2FT firstf fs''FT lastf (x1, x2)
529529
RigidThree (Elem x1) (Elem x2) (Elem x3) ->

0 commit comments

Comments
 (0)