From c6d51a1993f22d2355a46c328210f163d7a5d205 Mon Sep 17 00:00:00 2001 From: Strong Liu Date: Tue, 29 Jun 2010 06:52:24 +0000 Subject: [PATCH] correct typo in the javadoc git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19848 1b8cb986-b30d-0410-93ca-fae66ebed9b2 --- .../main/java/org/hibernate/stat/QueryStatisticsImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java b/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java index d90f05623e..68d905d246 100644 --- a/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java +++ b/core/src/main/java/org/hibernate/stat/QueryStatisticsImpl.java @@ -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;