From 1dfa028169c8f50d4f0ab32dec6c8d3ff1912ab1 Mon Sep 17 00:00:00 2001 From: Strong Liu Date: Thu, 7 Jan 2010 20:34:59 +0000 Subject: [PATCH] minor change, correct javadoc spell git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18443 1b8cb986-b30d-0410-93ca-fae66ebed9b2 --- core/src/main/java/org/hibernate/loader/Loader.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/hibernate/loader/Loader.java b/core/src/main/java/org/hibernate/loader/Loader.java index 27e665605b..f3e04315a8 100644 --- a/core/src/main/java/org/hibernate/loader/Loader.java +++ b/core/src/main/java/org/hibernate/loader/Loader.java @@ -1056,7 +1056,7 @@ public abstract class Loader { /** * 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 @@ public abstract class Loader { } /** - * Resolve any ids for currently loaded objects, duplications within the + * Resolve any IDs for currently loaded objects, duplications within the * ResultSet, etc. Instantiate empty objects to be initialized from the * ResultSet. Return an array of objects (a row of results) and an * array of booleans (by side-effect) that determine whether the corresponding @@ -1620,7 +1620,7 @@ public abstract class Loader { } /** - * 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). * @@ -1706,7 +1706,7 @@ public abstract class Loader { /** * Bind positional parameter values to the JDBC prepared statement. *

- * 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. *