diff --git a/src/main/java/org/apache/commons/logging/LogConfigurationException.java b/src/main/java/org/apache/commons/logging/LogConfigurationException.java index c2fa099..d3034ac 100644 --- a/src/main/java/org/apache/commons/logging/LogConfigurationException.java +++ b/src/main/java/org/apache/commons/logging/LogConfigurationException.java @@ -33,13 +33,13 @@ public class LogConfigurationException extends RuntimeException { protected Throwable cause; /** - * Construct a new exception with {@code null} as its detail message. + * Constructs a new exception with {@code null} as its detail message. */ public LogConfigurationException() { } /** - * Construct a new exception with the specified detail message. + * Constructs a new exception with the specified detail message. * * @param message The detail message */ @@ -48,7 +48,7 @@ public class LogConfigurationException extends RuntimeException { } /** - * Construct a new exception with the specified detail message and cause. + * Constructs a new exception with the specified detail message and cause. * * @param message The detail message * @param cause The underlying cause @@ -59,7 +59,7 @@ public class LogConfigurationException extends RuntimeException { } /** - * Construct a new exception with the specified cause and a derived + * Constructs a new exception with the specified cause and a derived * detail message. * * @param cause The underlying cause diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java b/src/main/java/org/apache/commons/logging/LogFactory.java index 6d70d16..d8cb1f9 100644 --- a/src/main/java/org/apache/commons/logging/LogFactory.java +++ b/src/main/java/org/apache/commons/logging/LogFactory.java @@ -750,7 +750,7 @@ public abstract class LogFactory { } /** - * Construct (if necessary) and return a {@code LogFactory} instance, using the following ordered lookup procedure to determine the name of the + * Constructs (if necessary) and return a {@code LogFactory} instance, using the following ordered lookup procedure to determine the name of the * implementation class to be loaded. *