You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by de...@apache.org on 2009/08/12 14:31:07 UTC

svn commit: r803474 - /commons/proper/dbcp/trunk/doc/abandon.jsp

Author: dennisl
Date: Wed Aug 12 12:31:07 2009
New Revision: 803474

URL: http://svn.apache.org/viewvc?rev=803474&view=rev
Log:
Fix typo.

Modified:
    commons/proper/dbcp/trunk/doc/abandon.jsp

Modified: commons/proper/dbcp/trunk/doc/abandon.jsp
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/doc/abandon.jsp?rev=803474&r1=803473&r2=803474&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/doc/abandon.jsp (original)
+++ commons/proper/dbcp/trunk/doc/abandon.jsp Wed Aug 12 12:31:07 2009
@@ -23,9 +23,9 @@
 <jsp:directive.page import="javax.naming.*"/>
 
 <!--
-  This jsp is used to test the abandoned connection feature of BaseicDataSource.
+  This jsp is used to test the abandoned connection feature of BasicDataSource.
   Add the following configuration to server.xml and load the jsp page.
-  The connections aren't closed and are logged to stdout/stderr. 
+  The connections aren't closed and are logged to stdout/stderr.
 
     <Resource name="jdbc/abandoned" auth="Container" type="javax.sql.DataSource"/>
     <ResourceParams name="jdbc/abandoned">
@@ -46,7 +46,7 @@
 <![CDATA[
     public DataSource getDataSource(JspWriter out) throws Exception {
         Context ctx = null;
-        
+
         try {
             ctx = new InitialContext();
         } catch (NamingException e) {