diff --git a/src/main/java/net/kemitix/mon/combinator/After.java b/src/main/java/net/kemitix/mon/combinator/After.java index d15d820..3fd00c4 100644 --- a/src/main/java/net/kemitix/mon/combinator/After.java +++ b/src/main/java/net/kemitix/mon/combinator/After.java @@ -25,7 +25,7 @@ import java.util.function.BiConsumer; import java.util.function.Function; /** - * After pattern comninator. + * After pattern combinator. * *

Original from http://boundsofjava.com/newsletter/003-introducing-combinators-part1

* diff --git a/src/main/java/net/kemitix/mon/combinator/Before.java b/src/main/java/net/kemitix/mon/combinator/Before.java index 2b854b7..4e40a29 100644 --- a/src/main/java/net/kemitix/mon/combinator/Before.java +++ b/src/main/java/net/kemitix/mon/combinator/Before.java @@ -25,7 +25,7 @@ import java.util.function.Consumer; import java.util.function.Function; /** - * Before pattern comninator. + * Before pattern combinator. * *

Original from http://boundsofjava.com/newsletter/003-introducing-combinators-part1

* @@ -43,7 +43,7 @@ public interface Before extends Function>> { /** - * Decorates a function with a Consumer that will be supplier with the argument before applying it to the function. + * Decorates a function with a Consumer that will be supplied with the argument before applying it to the function. * * @param before the consumer that will receive the argument before the function * @param function the function to apply the argument to and return the result value of