You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2020/09/16 17:12:14 UTC

[commons-dbcp] branch master updated: Fix typo

This is an automated email from the ASF dual-hosted git repository.

markt 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 1d63534  Fix typo
1d63534 is described below

commit 1d63534368672acce341a6a79a9d1dffbbe0d03a
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Sep 16 18:10:05 2020 +0100

    Fix typo
---
 src/main/java/org/apache/commons/dbcp2/BasicDataSource.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java b/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java
index 9a14ad1..b81a45a 100644
--- a/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java
+++ b/src/main/java/org/apache/commons/dbcp2/BasicDataSource.java
@@ -1564,7 +1564,7 @@ public class BasicDataSource implements DataSource, BasicDataSourceMXBean, MBean
      * Restarts the datasource.
      * <p>
      * This method calls {@link #close()} and {@link #start()} in sequence within synchronized scope so any
-     * connection requests that come in while the datsource is shutting down will be served by the new pool.
+     * connection requests that come in while the datasource is shutting down will be served by the new pool.
      * <p>
      * Idle connections that are stored in the connection pool when this method is invoked are closed, but
      * connections that are checked out to clients when this method is invoked are not affected. When client