diff --git a/hibernate-core/src/main/java/org/hibernate/dialect/DB2Dialect.java b/hibernate-core/src/main/java/org/hibernate/dialect/DB2Dialect.java index 88ea5a8b0c..9ed4effa1a 100644 --- a/hibernate-core/src/main/java/org/hibernate/dialect/DB2Dialect.java +++ b/hibernate-core/src/main/java/org/hibernate/dialect/DB2Dialect.java @@ -280,7 +280,7 @@ public class DB2Dialect extends Dialect { } /** - * DB2 does have a one-based offset, however this was actually already handled in the limiot string building + * DB2 does have a one-based offset, however this was actually already handled in the limit string building * (the '?+1' bit). To not mess up inheritors, I'll leave that part alone and not touch the offset here. * * @param zeroBasedFirstResult The user-supplied, zero-based offset diff --git a/hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java b/hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java index 70658c749e..2a6023a362 100644 --- a/hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java +++ b/hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java @@ -1112,7 +1112,7 @@ public abstract class Dialect { } /** - * Generate a temporary table name given the bas table. + * Generate a temporary table name given the base table. * * @param baseTableName The table name from which to base the temp table name. * @return The generated temp table name.