[hibernate-commits] Hibernate SVN: r19848 - core/trunk/core/src/main/java/org/hibernate/stat.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Jun 29 02:52:25 EDT 2010


Author: stliu
Date: 2010-06-29 02:52:24 -0400 (Tue, 29 Jun 2010)
New Revision: 19848

Modified:
   core/trunk/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java
Log:
correct typo in the javadoc

Modified: core/trunk/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java	2010-06-29 06:51:14 UTC (rev 19847)
+++ core/trunk/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java	2010-06-29 06:52:24 UTC (rev 19848)
@@ -85,21 +85,21 @@
 	}
 
 	/**
-	 * average time in ms taken by the excution of this query onto the DB
+	 * average time in ms taken by the execution of this query onto the DB
 	 */
 	public long getExecutionAvgTime() {
 		return executionAvgTime;
 	}
 
 	/**
-	 * max time in ms taken by the excution of this query onto the DB
+	 * max time in ms taken by the execution of this query onto the DB
 	 */
 	public long getExecutionMaxTime() {
 		return executionMaxTime;
 	}
 
 	/**
-	 * min time in ms taken by the excution of this query onto the DB
+	 * min time in ms taken by the execution of this query onto the DB
 	 */
 	public long getExecutionMinTime() {
 		return executionMinTime;



More information about the hibernate-commits mailing list