Index: src/test/java/org/apache/harmony/sql/tests/java/sql/SQLPermissionTest.java =================================================================== --- src/test/java/org/apache/harmony/sql/tests/java/sql/SQLPermissionTest.java (revision 482616) +++ src/test/java/org/apache/harmony/sql/tests/java/sql/SQLPermissionTest.java (working copy) @@ -25,7 +25,7 @@ * JUnit Testcase for the java.sql.SQLPermission class * * Note that the SQLPermission class only defines 2 constructors and all other - * methods are inherited. This testcase explicity tets the constructors but also + * methods are inherited. This testcase explicitly tets the constructors but also * implicitly tests some of the inherited query methods. * */ Index: src/main/java/java/sql/Statement.java =================================================================== --- src/main/java/java/sql/Statement.java (revision 482616) +++ src/main/java/java/sql/Statement.java (working copy) @@ -522,7 +522,7 @@ *

* Cursor names must be unique within one Connection. *

- * With the Cursor name set, it can then be utilised in SQL positioned + * With the Cursor name set, it can then be utilized in SQL positioned * update or delete statements to determine the current row in a ResultSet * generated from this Statement. The positioned update or delete must be * done with a different Statement than this one. @@ -560,7 +560,7 @@ * ResultSet.FETCH_REVERSE * @throws SQLException * if there is an error while accessing the database or if the - * fetch direction is unrecognised + * fetch direction is unrecognized */ public void setFetchDirection(int direction) throws SQLException; Index: src/main/java/java/sql/DatabaseMetaData.java =================================================================== --- src/main/java/java/sql/DatabaseMetaData.java (revision 482616) +++ src/main/java/java/sql/DatabaseMetaData.java (working copy) @@ -1090,7 +1090,7 @@ *

  • DatabaseMetaData.tableIndexStatistic - table statistics returned * with Index descriptions
  • *
  • DatabaseMetaData.tableIndexClustered - a clustered Index
  • - *
  • DatabaseMetaData.tableIndexHased - a hashed Index
  • + *
  • DatabaseMetaData.tableIndexHashed - a hashed Index
  • *
  • DatabaseMetaData.tableIndexOther - other style of Index
  • * * @@ -1683,7 +1683,7 @@ * have a direct supertype, it is not listed. *

    * The listing is returned as a ResultSet where there is one row for a - * specific UDT which describes its supertype, with the data organised in + * specific UDT which describes its supertype, with the data organized in * columns as follows: *

      *
    1. TYPE_CAT - String - the UDT Catalog name (possibly Index: src/main/java/java/sql/Savepoint.java =================================================================== --- src/main/java/java/sql/Savepoint.java (revision 482616) +++ src/main/java/java/sql/Savepoint.java (working copy) @@ -18,7 +18,7 @@ package java.sql; /** - * A Savepoint is an instant during the current transaction that can be utilised + * A Savepoint is an instant during the current transaction that can be utilized * by a Rollback from the Connection.rollback method. Rolling back to a * particular Savepoint means that all changes that occurred after that * Savepoint are removed. Index: src/main/java/java/sql/Date.java =================================================================== --- src/main/java/java/sql/Date.java (revision 482616) +++ src/main/java/java/sql/Date.java (working copy) @@ -31,7 +31,7 @@ *

      * Time points are handled as millisecond values - milliseconds since the epoch, * January 1st 1970, 00:00:00.000 GMT. Time values passed to the java.sql.Date - * class are "normalised" to the time 00:00:00.000 GMT on the date implied by + * class are "normalized" to the time 00:00:00.000 GMT on the date implied by * the time value. */ public class Date extends java.util.Date { @@ -203,7 +203,7 @@ } int firstIndex = dateString.indexOf('-'); int secondIndex = dateString.indexOf('-', firstIndex + 1); - // secondIndex == -1 means none or only one separater '-' has been + // secondIndex == -1 means none or only one separator '-' has been // found. // The string is separated into three parts by two separator characters, // if the first or the third part is null string, we should throw Index: src/main/java/java/sql/SQLException.java =================================================================== --- src/main/java/java/sql/SQLException.java (revision 482616) +++ src/main/java/java/sql/SQLException.java (working copy) @@ -113,7 +113,7 @@ } /** - * Retrieves the SQLException chanied to this SQLException, if any. + * Retrieves the SQLException chained to this SQLException, if any. * * @return The SQLException chained to this SQLException. null if there is * no SQLException chained to this SQLException. Index: src/main/java/java/sql/Blob.java =================================================================== --- src/main/java/java/sql/Blob.java (revision 482616) +++ src/main/java/java/sql/Blob.java (working copy) @@ -46,7 +46,7 @@ * * @param pos * the position of the first byte in the Blob to get, where the - * first byte in the Blob hss position = 1 + * first byte in the Blob has position = 1 * @param length * the number of bytes to get * @return a byte array containing the data from the Blob, starting at pos Index: src/main/java/java/sql/Clob.java =================================================================== --- src/main/java/java/sql/Clob.java (revision 482616) +++ src/main/java/java/sql/Clob.java (working copy) @@ -94,10 +94,10 @@ * in this Clob object. * * @param searchstr - * th String to seach for + * th String to search for * @param start * the position at which to start the search within this Clob. - * @return a long value with the position at which the specificed String + * @return a long value with the position at which the specified String * occurs within this Clob. * @throws SQLException * if an error occurs accessing the Clob Index: src/main/java/java/sql/SQLInput.java =================================================================== --- src/main/java/java/sql/SQLInput.java (revision 482616) +++ src/main/java/java/sql/SQLInput.java (working copy) @@ -35,7 +35,7 @@ *

      * When the getObject method is called with an object which implements the * SQLData interface, the JDBC driver determines the SQL type of the UDT being - * mapped by caling the SQLData.getSQLType method. The driver creates an + * mapped by calling the SQLData.getSQLType method. The driver creates an * instance of an SQLInput stream, filling the stream with the attributes of the * UDT. The SQLInput stream is passed to the SQLData.readSQL method which then * calls the SQLInput reader methods to read the attributes. Index: src/main/java/java/sql/Struct.java =================================================================== --- src/main/java/java/sql/Struct.java (revision 482616) +++ src/main/java/java/sql/Struct.java (working copy) @@ -53,7 +53,7 @@ * method uses the supplied type map for customized type mappings. Where * there is no entry in the Type Map which matches the this structured type, * the JDBC driver uses the default mapping. The Connection type map is - * never utilised by this method. + * never utilized by this method. * * @param theMap * a Map describing how SQL Type names are mapped to classes. Index: src/main/java/java/sql/SQLData.java =================================================================== --- src/main/java/java/sql/SQLData.java (revision 482616) +++ src/main/java/java/sql/SQLData.java (working copy) @@ -60,7 +60,7 @@ * Reads data from the database into this object. This method follows these * steps: *