fixed some typos

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17807 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Hardy Ferentschik 2009-10-20 17:31:02 +00:00
parent a875b19af1
commit 52c0d41f83
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ import org.hibernate.ejb.HibernateEntityManagerImplementor;
* Compiles a JPA criteria query into an executable {@link TypedQuery}. Its single contract is the {@link #compile} * Compiles a JPA criteria query into an executable {@link TypedQuery}. Its single contract is the {@link #compile}
* method. * method.
* <p/> * <p/>
* NOTE : This is a temporay implementation which simply translates the criteria query into a JPAQL query string. A * NOTE : This is a temporary implementation which simply translates the criteria query into a JPAQL query string. A
* better, long-term solution is being implemented as part of refactoring the JPAQL/HQL translator. * better, long-term solution is being implemented as part of refactoring the JPAQL/HQL translator.
* *
* @author Steve Ebersole * @author Steve Ebersole

View File

@ -39,7 +39,7 @@ import javax.persistence.criteria.Subquery;
import javax.persistence.metamodel.EntityType; import javax.persistence.metamodel.EntityType;
/** /**
* The Hibernate implementation of the JPA {@link CriteriaQuery} contract. Mostlty a set of delegation to its * The Hibernate implementation of the JPA {@link CriteriaQuery} contract. Mostly a set of delegation to its
* internal {@link QueryStructure}. * internal {@link QueryStructure}.
* *
* @author Steve Ebersole * @author Steve Ebersole