From 0605c3e0445c2fb13e32c98fe7d60462ef494a48 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Mon, 4 Jul 2011 06:23:23 +0000 Subject: [PATCH] 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 --- .../apache/commons/lang3/reflect/ConstructorUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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.