correct typo in the javadoc

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19848 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-06-29 06:52:24 +00:00
parent c251637ed6
commit c6d51a1993
1 changed files with 3 additions and 3 deletions

View File

@ -85,21 +85,21 @@ public class QueryStatisticsImpl extends CategorizedStatistics implements QueryS
}
/**
* 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;