You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/03/20 17:40:48 UTC

svn commit: r756596 - /commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java

Author: psteitz
Date: Fri Mar 20 16:40:47 2009
New Revision: 756596

URL: http://svn.apache.org/viewvc?rev=756596&view=rev
Log:
Fixed typos in javadoc.

Modified:
    commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java

Modified: commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java?rev=756596&r1=756595&r2=756596&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java (original)
+++ commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java Fri Mar 20 16:40:47 2009
@@ -74,7 +74,7 @@
  * <pre> &lt;object class="java.util.Date"/&gt;
  * &lt;object class="java.util.Date"/&gt;</pre>
  * The {@link #getTypeArray} method
- * will return an composed
+ * will return an array composed
  * of two instances of <tt>java.util.Date</tt>.  The sequence of
  * {@link java.lang.Object <tt>Object</tt>s} in the array
  * will correspond to the sequence of <tt>&lt;object&gt;</tt> elements in the JOCL fragment.
@@ -90,7 +90,7 @@
  * will add an instance of <tt>mypackage.Foo</tt> to the object list, constructed via
  * <tt>new mypackage.Foo(new mypackage.Bar())</tt>.
  * <p>
- * There is a special syntax available creating primative values and arguments,
+ * There is a special syntax available creating primitive values and arguments,
  * as well as for constructing {@link java.lang.String <tt>String</tt>}s. Some examples:
  * <p>
  * <pre> &lt;byte value="3"/&gt;
@@ -106,7 +106,7 @@
  * When invoked at the "root" level (that is, with no <tt>&lt;object&gt;</tt> parent),
  * this will cause the corresponding "object wrapper" to be added to the list of
  * {@link java.lang.Object <tt>Object</tt>}s.  The {@link #getType type} for these
- * objects will reflect the proper primative type, however.  When invoked with an
+ * objects will reflect the proper primitive type, however.  When invoked with an
  * <tt>&lt;object&gt;</tt> parent, these will be treated as primitive arguments to the
  * specified {@link java.lang.Object <tt>Object</tt>}'s constructor.  For example, while:
  * <p>