src/share/classes/javax/sql/rowset/JoinRowSet.java

Print this page

        

@@ -109,11 +109,11 @@
  * each match column must be ones that can be compared to values in the other match
  * columns. The columns do not have to have the same name, though they often do,
  * and they do not have to store the exact same data type as long as the data types
  * can be compared.
  * <P>
- * A match column can be be set in two ways:
+ * A match column can be set in two ways:
  * <ul>
  *  <li>By calling the <code>Joinable</code> method <code>setMatchColumn</code><br>
  *  This is the only method that can set the match column before a <code>RowSet</code>
  *  object is added to a <code>JoinRowSet</code> object. The <code>RowSet</code> object
  *  must have implemented the <code>Joinable</code> interface in order to use the method

@@ -525,11 +525,11 @@
      * on the left has no matching record.
      */
     public static int RIGHT_OUTER_JOIN = 3;
 
     /**
-     * An ANSI-style <code>JOIN</code> providing a a full JOIN. Specifies that all
+     * An ANSI-style <code>JOIN</code> providing a full JOIN. Specifies that all
      * rows from either table be returned regardless of matching
      * records on the other table.
      */
     public static int FULL_JOIN = 4;