summaryrefslogtreecommitdiff
path: root/src/main/java/org/mockito/ArgumentCaptor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/mockito/ArgumentCaptor.java')
-rw-r--r--src/main/java/org/mockito/ArgumentCaptor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/mockito/ArgumentCaptor.java b/src/main/java/org/mockito/ArgumentCaptor.java
index 1104de9..7011c92 100644
--- a/src/main/java/org/mockito/ArgumentCaptor.java
+++ b/src/main/java/org/mockito/ArgumentCaptor.java
@@ -49,7 +49,7 @@ import org.mockito.internal.matchers.CapturingMatcher;
* Custom argument matchers via {@link ArgumentMatcher} are usually better for stubbing.
*
* <p>
- * This utility class <strong>*don't do any type checks*</strong>, the generic signatures are only there to avoid casting
+ * This utility class <strong>*doesn't do any type checks*</strong>. The generic signatures are only there to avoid casting
* in your code.
* <p>
* There is an <strong>annotation</strong> that you might find useful: &#64;{@link Captor}
@@ -136,7 +136,7 @@ public class ArgumentCaptor<T> {
/**
* Build a new <code>ArgumentCaptor</code>.
* <p>
- * Note that an <code>ArgumentCaptor</code> <b>*don't do any type checks*</b>, it is only there to avoid casting
+ * Note that an <code>ArgumentCaptor</code> <b>*doesn't do any type checks*</b>. It is only there to avoid casting
* in your code. This might however change (type checks could be added) in a
* future major release.
*