diff --git a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java index 2c0eb8865..fdf9aab37 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java @@ -58,7 +58,7 @@ public ConstructorUtils() { } /** - *

Returns new instance of klazz created using the actual + *

Returns a new instance of klazz created using the actual * arguments args. The formal parameter types are inferred from * the actual values of args. See * {@link #invokeExactConstructor(Class, Object[], Class[])} for more @@ -95,7 +95,7 @@ public static T invokeConstructor(Class cls, Object... args) } /** - *

Returns new instance of klazz created using constructor + *

Returns a new instance of klazz created using constructor * with signature parameterTypes and actual arguments * args.

* @@ -131,7 +131,7 @@ public static T invokeConstructor(Class cls, Object[] args, Class[] pa } /** - *

Returns new instance of klazz created using the actual + *

Returns a new instance of klazz created using the actual * arguments args. The formal parameter types are inferred from * the actual values of args. See * {@link #invokeExactConstructor(Class, Object[], Class[])} for more @@ -169,7 +169,7 @@ public static T invokeExactConstructor(Class cls, Object... args) } /** - *

Returns new instance of klazz created using constructor + *

Returns a new instance of klazz created using constructor * with signature parameterTypes and actual arguments * args.

* @@ -237,7 +237,7 @@ public static Constructor getAccessibleConstructor(Constructor ctor) { } /** - *

Find an accessible constructor with compatible parameters. Compatible + *

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.