Skip to content

Commit

Permalink
fix javadoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmcclean committed Feb 19, 2015
1 parent 43e59e9 commit c5500a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/aol/simple/react/ReactStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static SimpleReact lazy(ExecutorService executor){
}

/**
* @param executor RetryExecutor this SimpleReact instance will use to retry concurrent tasks.
* @param retry RetryExecutor this SimpleReact instance will use to retry concurrent tasks.
* @return Lazy SimpleReact for handling infinite streams
*/
public static SimpleReact lazy(RetryExecutor retry){
Expand Down Expand Up @@ -78,7 +78,7 @@ public static SimpleReact eager(ExecutorService executor){
return new SimpleReact(executor,true);
}
/**
* @param executor RetryExecutor this SimpleReact instance will use to retry concurrent tasks.
* @param retry RetryExecutor this SimpleReact instance will use to retry concurrent tasks.
* @return Eager SimpleReact for handling finite streams
*/
public static SimpleReact eager(RetryExecutor retry){
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aol/simple/react/Stage.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public <R> Stage<R> flatMap(
* Will execute this phase on the RetryExecutor (default or user supplied).
* The RetryExecutor can be changed via withRetrier.
*
* This stage will be retried according to the configured rules. See {@link:https://github.com/nurkiewicz/async-retry} for detailed advice on how to conifugre
* This stage will be retried according to the configured rules. See https://github.com/nurkiewicz/async-retry for detailed advice on how to conifugre
*
*
* @param fn Function that will be executed and retried on failure
Expand Down

0 comments on commit c5500a6

Please sign in to comment.