HHH-4508 - Fixed 'avalable' typo

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17805 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Juraci Krohling 2009-10-20 14:21:52 +00:00
parent 95d4af906e
commit a875b19af1
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class DialectFactory {
public static Dialect buildDialect(Properties properties) {
String dialectName = properties.getProperty( Environment.DIALECT );
if ( dialectName == null ) {
throw new HibernateException( "'hibernate.dialect' must be set when no Connection avalable" );
throw new HibernateException( "'hibernate.dialect' must be set when no Connection available" );
}
return constructDialect( dialectName );
}