Skip to content

Commit 5e390cc

Browse files
committed
fix
1 parent d2fe63b commit 5e390cc

File tree

1 file changed

+1
-1
lines changed
  • java/src/main/java/v/o/i/d/monadsplain

1 file changed

+1
-1
lines changed

java/src/main/java/v/o/i/d/monadsplain/Six.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public IntegerWithHistory calculate(Function<Integer, IntegerWithHistory> operat
2525
final IntegerWithHistory a = operation.apply(value);
2626
return new IntegerWithHistory(
2727
a.value,
28-
join(history, join(history, a.history))
28+
join(history, a.history)
2929
);
3030
}
3131
}

0 commit comments

Comments
 (0)