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

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Dec 29 10:55:13 EST 2009


Author: stliu
Date: 2009-12-29 10:55:12 -0500 (Tue, 29 Dec 2009)
New Revision: 18343

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

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/hql/QueryTranslator.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/hql/QueryTranslator.java	2009-12-29 14:47:06 UTC (rev 18342)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/hql/QueryTranslator.java	2009-12-29 15:55:12 UTC (rev 18343)
@@ -74,7 +74,7 @@
 			throws HibernateException;
 
 	/**
-	 * Perform an iterate operation given the underlying query defintion.
+	 * Perform an iterate operation given the underlying query definition.
 	 *
 	 * @param queryParameters The query bind parameters.
 	 * @param session         The session owning this query.
@@ -85,7 +85,7 @@
 			throws HibernateException;
 
 	/**
-	 * Perform a scroll operation given the underlying query defintion.
+	 * Perform a scroll operation given the underlying query definition.
 	 *
 	 * @param queryParameters The query bind parameters.
 	 * @param session         The session owning this query.
@@ -96,7 +96,7 @@
 			throws HibernateException;
 
 	/**
-	 * Perform a bulk update/delete operation given the underlying query defintion.
+	 * Perform a bulk update/delete operation given the underlying query definition.
 	 *
 	 * @param queryParameters The query bind parameters.
 	 * @param session         The session owning this query.
@@ -107,7 +107,7 @@
 			throws HibernateException;
 
 	/**
-	 * Returns the set of query spaces (table names) that the query referrs to.
+	 * Returns the set of query spaces (table names) that the query refers to.
 	 *
 	 * @return A set of query spaces (table names).
 	 */
@@ -115,7 +115,7 @@
 
 	/**
 	 * Retrieve the query identifier for this translator.  The query identifier is
-	 * used in stats collection.
+	 * used in states collection.
 	 *
 	 * @return the identifier
 	 */
@@ -181,7 +181,7 @@
 	/**
 	 * Does the translated query contain collection fetches?
 	 *
-	 * @return tru if the query does contain collection fetched;
+	 * @return true if the query does contain collection fetched;
 	 * false otherwise.
 	 */
 	boolean containsCollectionFetches();



More information about the hibernate-commits mailing list