Author: dkulp
Date: Mon May 16 17:24:13 2011
New Revision: 1103806

URL: http://svn.apache.org/viewvc?rev=1103806&view=rev
Log:
Fix javadoc typos

Modified:
    
cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java

Modified: 
cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java
URL: 
http://svn.apache.org/viewvc/cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java?rev=1103806&r1=1103805&r2=1103806&view=diff
==============================================================================
--- 
cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java
 (original)
+++ 
cxf/trunk/rt/core/src/main/java/org/apache/cxf/service/invoker/PooledFactory.java
 Mon May 16 17:24:13 2011
@@ -46,7 +46,7 @@ public class PooledFactory implements Fa
         this(new PerRequestFactory(svcClass), max, false);
     }
     /**
-     * Pool of instances contructed from the given factory
+     * Pool of instances constructed from the given factory
      * @param factory
      * @param max the absolute maximum number to create and pool
      */
@@ -55,7 +55,7 @@ public class PooledFactory implements Fa
     }
 
     /**
-     * Pool of instances contructed from the given factory
+     * Pool of instances constructed from the given factory
      * @param factory
      * @param max the absolute maximum number to create and pool
      * @param createMore If the pool is empty, but max objects have already 
@@ -76,7 +76,7 @@ public class PooledFactory implements Fa
     
     /**
      * Pool constructed from the give Collection of objects. 
-     * @param objs The collection of objects to pre-polulate the pool
+     * @param objs The collection of objects to pre-populate the pool
      */
     public PooledFactory(Collection<Object> objs) {
         pool = new ArrayBlockingQueue<Object>(objs.size(), true);


Reply via email to