Fix typo in Javadoc of ArgumentCaptor (#3448)

diff --git a/src/main/java/org/mockito/ArgumentCaptor.java b/src/main/java/org/mockito/ArgumentCaptor.java
index 8e522f1..863c9a2 100644
--- a/src/main/java/org/mockito/ArgumentCaptor.java
+++ b/src/main/java/org/mockito/ArgumentCaptor.java
@@ -88,7 +88,7 @@
     /**
      * Returns the captured value of the argument. When capturing varargs use {@link #getAllValues()}.
      * <p>
-     * If verified method was called multiple times then this method it returns the latest captured value.
+     * If verified method was called multiple times then this method returns the latest captured value.
      * <p>
      * See examples in javadoc for {@link ArgumentCaptor} class.
      *