Skip to content

Commit 923306e

Browse files
committed
Code formatting
1 parent e7cb46c commit 923306e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Data/Traversable.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ exports.traverseArrayImpl = function () {
1616
function array3(a) {
1717
return function (b) {
1818
return function (c) {
19-
return [a,b,c];
19+
return [a, b, c];
2020
};
2121
};
2222
}
2323

2424
function concat2(xs) {
25-
return function (ys) {return xs.concat(ys);};
25+
return function (ys) {
26+
return xs.concat(ys);
27+
};
2628
}
2729

2830
return function (apply) {

0 commit comments

Comments
 (0)