Fix javadoc typos

This commit is contained in:
Paul Campbell 2017-12-12 23:19:48 +00:00
parent f2cb8b18a3
commit edd95ac48a
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ import java.util.function.BiConsumer;
import java.util.function.Function; import java.util.function.Function;
/** /**
* After pattern comninator. * After pattern combinator.
* *
* <p>Original from http://boundsofjava.com/newsletter/003-introducing-combinators-part1</p> * <p>Original from http://boundsofjava.com/newsletter/003-introducing-combinators-part1</p>
* *

View file

@ -25,7 +25,7 @@ import java.util.function.Consumer;
import java.util.function.Function; import java.util.function.Function;
/** /**
* Before pattern comninator. * Before pattern combinator.
* *
* <p>Original from http://boundsofjava.com/newsletter/003-introducing-combinators-part1</p> * <p>Original from http://boundsofjava.com/newsletter/003-introducing-combinators-part1</p>
* *
@ -43,7 +43,7 @@ public interface Before<T, R> extends
Function<T, R>>> { Function<T, R>>> {
/** /**
* 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 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 * @param function the function to apply the argument to and return the result value of