This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git
The following commit(s) were added to refs/heads/master by this push: new 6d232e5 Javadoc. 6d232e5 is described below commit 6d232e547d5725e419832fc514fc0348aa897e7c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 11 16:02:22 2020 -0400 Javadoc. --- .../apache/commons/dbcp2/datasources/InstanceKeyDataSource.java | 8 ++++---- .../java/org/apache/commons/dbcp2/datasources/package-info.java | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/dbcp2/datasources/InstanceKeyDataSource.java b/src/main/java/org/apache/commons/dbcp2/datasources/InstanceKeyDataSource.java index 9c1cb9f..1605d7c 100644 --- a/src/main/java/org/apache/commons/dbcp2/datasources/InstanceKeyDataSource.java +++ b/src/main/java/org/apache/commons/dbcp2/datasources/InstanceKeyDataSource.java @@ -532,7 +532,7 @@ public abstract class InstanceKeyDataSource implements DataSource, Referenceable } /** - * Sets the backend ConnectionPoolDataSource. This property should not be set if using JNDI to access the + * Sets the back end ConnectionPoolDataSource. This property should not be set if using JNDI to access the * data source. * * @param v @@ -689,7 +689,7 @@ public abstract class InstanceKeyDataSource implements DataSource, Referenceable /** * Gets the value of jndiEnvironment which is used when instantiating a JNDI InitialContext. This InitialContext is - * used to locate the backend ConnectionPoolDataSource. + * used to locate the back end ConnectionPoolDataSource. * * @param key * JNDI environment key. @@ -705,7 +705,7 @@ public abstract class InstanceKeyDataSource implements DataSource, Referenceable /** * Sets the value of the given JNDI environment property to be used when instantiating a JNDI InitialContext. This - * InitialContext is used to locate the backend ConnectionPoolDataSource. + * InitialContext is used to locate the back end ConnectionPoolDataSource. * * @param key * the JNDI environment property to set. @@ -721,7 +721,7 @@ public abstract class InstanceKeyDataSource implements DataSource, Referenceable /** * Sets the JNDI environment to be used when instantiating a JNDI InitialContext. This InitialContext is used to - * locate the backend ConnectionPoolDataSource. + * locate the back end ConnectionPoolDataSource. * * @param properties * the JNDI environment property to set which will overwrite any current settings diff --git a/src/main/java/org/apache/commons/dbcp2/datasources/package-info.java b/src/main/java/org/apache/commons/dbcp2/datasources/package-info.java index 1ea26c9..7b16c41 100644 --- a/src/main/java/org/apache/commons/dbcp2/datasources/package-info.java +++ b/src/main/java/org/apache/commons/dbcp2/datasources/package-info.java @@ -127,7 +127,7 @@ * Connection pooling is useful in applications regardless of whether they run * in a J2EE environment and a <code>DataSource</code> can be used within a * simpler environment. The example below shows SharedPoolDataSource using - * DriverAdapterCPDS as the backend source, though any CPDS is applicable. + * DriverAdapterCPDS as the back end source, though any CPDS is applicable. * </p> * * <code>