Skip to content

Commit

Permalink
Corrects typo in source example of ParametersRunnerFactory.
Browse files Browse the repository at this point in the history
Closes #1085
  • Loading branch information
Adrian Cole authored and kcooney committed Mar 1, 2015
1 parent dc90577 commit 9c337dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/junit/runners/Parameterized.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
* The factory must have a public zero-arg constructor.
*
* <pre>
* public class YourRunnerFactory implements ParameterizedRunnerFactory {
* public class YourRunnerFactory implements ParametersRunnerFactory {
* public Runner createRunnerForTestWithParameters(TestWithParameters test)
* throws InitializationError {
* return YourRunner(test);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.junit.runners.model.InitializationError;

/**
* A {@code ParameterizedRunnerFactory} creates a runner for a single
* A {@code ParametersRunnerFactory} creates a runner for a single
* {@link TestWithParameters}.
*
* @since 4.12
Expand Down

0 comments on commit 9c337dc

Please sign in to comment.