Use the active voice in Javadocs.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1142559 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2011-07-04 06:23:23 +00:00
parent 1bb1765bd8
commit 0605c3e044
1 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ public ConstructorUtils() {
}
/**
* <p>Returns new instance of <code>klazz</code> created using the actual
* <p>Returns a new instance of <code>klazz</code> created using the actual
* arguments <code>args</code>. The formal parameter types are inferred from
* the actual values of <code>args</code>. See
* {@link #invokeExactConstructor(Class, Object[], Class[])} for more
@ -95,7 +95,7 @@ public static <T> T invokeConstructor(Class<T> cls, Object... args)
}
/**
* <p>Returns new instance of <code>klazz</code> created using constructor
* <p>Returns a new instance of <code>klazz</code> created using constructor
* with signature <code>parameterTypes</code> and actual arguments
* <code>args</code>.</p>
*
@ -131,7 +131,7 @@ public static <T> T invokeConstructor(Class<T> cls, Object[] args, Class<?>[] pa
}
/**
* <p>Returns new instance of <code>klazz</code> created using the actual
* <p>Returns a new instance of <code>klazz</code> created using the actual
* arguments <code>args</code>. The formal parameter types are inferred from
* the actual values of <code>args</code>. See
* {@link #invokeExactConstructor(Class, Object[], Class[])} for more
@ -169,7 +169,7 @@ public static <T> T invokeExactConstructor(Class<T> cls, Object... args)
}
/**
* <p>Returns new instance of <code>klazz</code> created using constructor
* <p>Returns a new instance of <code>klazz</code> created using constructor
* with signature <code>parameterTypes</code> and actual arguments
* <code>args</code>.</p>
*
@ -237,7 +237,7 @@ public static <T> Constructor<T> getAccessibleConstructor(Constructor<T> ctor) {
}
/**
* <p>Find an accessible constructor with compatible parameters. Compatible
* <p>Finds an accessible constructor with compatible parameters. Compatible
* parameters mean that every method parameter is assignable from the given
* parameters. In other words, it finds constructor that will take the
* parameters given.</p>