diff --git a/src/main/java/org/mockito/AdditionalAnswers.java b/src/main/java/org/mockito/AdditionalAnswers.java index 684e5461ac..8df8d7188a 100644 --- a/src/main/java/org/mockito/AdditionalAnswers.java +++ b/src/main/java/org/mockito/AdditionalAnswers.java @@ -276,7 +276,7 @@ public static Answer returnsArgAt(int position) { * This feature suffers from the same drawback as the spy. * The mock will call the delegate if you use regular when().then() stubbing style. * Since the real implementation is called this might have some side effects. - * Therefore you should to use the doReturn|Throw|Answer|CallRealMethod stubbing style. Example: + * Therefore you should use the doReturn|Throw|Answer|CallRealMethod stubbing style. Example: * *

      *   List listWithDelegate = mock(List.class, AdditionalAnswers.delegatesTo(awesomeList));