[hibernate-commits] Hibernate SVN: r18460 - core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/loader.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Jan 8 14:28:02 EST 2010


Author: stliu
Date: 2010-01-08 14:28:01 -0500 (Fri, 08 Jan 2010)
New Revision: 18460

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/loader/Loader.java
Log:
minor change, correct javadoc spell

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/loader/Loader.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/loader/Loader.java	2010-01-08 19:22:17 UTC (rev 18459)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/loader/Loader.java	2010-01-08 19:28:01 UTC (rev 18460)
@@ -1056,7 +1056,7 @@
 
 	/**
 	 * If this is a collection initializer, we need to tell the session that a collection
-	 * is being initilized, to account for the possibility of the collection having
+	 * is being initialized, to account for the possibility of the collection having
 	 * no elements (hence no rows in the result set).
 	 */
 	private void handleEmptyCollections(
@@ -1173,7 +1173,7 @@
 	}
 
 	/**
-	 * Resolve any ids for currently loaded objects, duplications within the
+	 * Resolve any IDs for currently loaded objects, duplications within the
 	 * <tt>ResultSet</tt>, etc. Instantiate empty objects to be initialized from the
 	 * <tt>ResultSet</tt>. Return an array of objects (a row of results) and an
 	 * array of booleans (by side-effect) that determine whether the corresponding
@@ -1622,7 +1622,7 @@
 	}
 
 	/**
-	 * Some dialect-specific LIMIT clauses require the maximium last row number
+	 * Some dialect-specific LIMIT clauses require the maximum last row number
 	 * (aka, first_row_number + total_row_count), while others require the maximum
 	 * returned row count (the total maximum number of rows to return).
 	 *
@@ -1708,7 +1708,7 @@
 	/**
 	 * Bind positional parameter values to the JDBC prepared statement.
 	 * <p/>
-	 * Postional parameters are those specified by JDBC-style ? parameters
+	 * Positional parameters are those specified by JDBC-style ? parameters
 	 * in the source query.  It is (currently) expected that these come
 	 * before any named parameters in the source query.
 	 *



More information about the hibernate-commits mailing list