fixed broken javadoc links - thanks Phil for reporting

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/digester/trunk@1188032 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/digester3/CallMethodRule.java b/src/main/java/org/apache/commons/digester3/CallMethodRule.java
index acea32f..c4d3137 100644
--- a/src/main/java/org/apache/commons/digester3/CallMethodRule.java
+++ b/src/main/java/org/apache/commons/digester3/CallMethodRule.java
@@ -43,9 +43,10 @@
  * Incompatible method parameter types are converted using <code>org.apache.commons.beanutils.ConvertUtils</code>.
  * </p>
  * <p>
- * This rule now uses {@link MethodUtils#invokeMethod} by default. This increases the kinds of methods successfully and
- * allows primitives to be matched by passing in wrapper classes. There are rare cases when
- * {@link MethodUtils#invokeExactMethod} (the old default) is required. This method is much stricter in it's reflection.
+ * This rule now uses {@link org.apache.commons.beanutils.MethodUtils#invokeMethod} by default.
+ * This increases the kinds of methods successfully and allows primitives to be matched by passing in wrapper classes.
+ * There are rare cases when {@link org.apache.commons.beanutils.MethodUtils#invokeExactMethod} (the old default) is
+ * required. This method is much stricter in it's reflection.
  * Setting the <code>UseExactMatch</code> to true reverts to the use of this method.
  * </p>
  * <p>