HHH-16580 - Some typos in org.hibernate.query.sqm

This commit is contained in:
Felix 2023-05-10 16:59:42 +03:00 committed by Jan Schatteman
parent 527338d71a
commit a8cd4ad932
5 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@
package org.hibernate.query.sqm.function;
/**
* The kind of a function e.g. normal, aggregate etc.
* The kind of function e.g. normal, aggregate etc.
*
* @author Christian Beikov
*/

View File

@ -79,7 +79,7 @@ public class TableBasedDeleteHandler
);
}
// Getters for Hibernat Reactive
// Getters for Hibernate Reactive
protected TemporaryTable getIdTable() {
return idTable;
}

View File

@ -14,7 +14,7 @@ import org.hibernate.type.spi.TypeConfiguration;
import java.util.List;
/**
* Validates the arguments provided to a HQL function invocation.
* Validates the arguments provided to an HQL function invocation.
*
* @author Steve Ebersole
*

View File

@ -38,7 +38,7 @@ public class StandardFunctionReturnTypeResolvers {
/**
* A resolver that defines an invariant result type. E.g. `substring` always
* returns a String. Note however that to account for attribute converters and
* such, this resolver allows the context-impled expression type to be the
* such, this resolver allows the context-implied expression type to be the
* return type so long as the Java types are compatible.
*/
public static FunctionReturnTypeResolver invariant(BasicType<?> invariantType) {

View File

@ -13,7 +13,7 @@ import org.hibernate.query.sqm.tree.SqmCopyContext;
import org.hibernate.query.sqm.tree.select.SqmSubQuery;
/**
* Represents a {@link Modifier#ALL}, {@link Modifier#ANY}, {@link Modifier#SOME} modifier appplied to a subquery as
* Represents a {@link Modifier#ALL}, {@link Modifier#ANY}, {@link Modifier#SOME} modifier applied to a subquery as
* part of a comparison.
*
* @author Steve Ebersole