diff --git a/hibernate-core/src/main/java/org/hibernate/annotations/Synchronize.java b/hibernate-core/src/main/java/org/hibernate/annotations/Synchronize.java index d4ef5942a7..d70a99e7dd 100644 --- a/hibernate-core/src/main/java/org/hibernate/annotations/Synchronize.java +++ b/hibernate-core/src/main/java/org/hibernate/annotations/Synchronize.java @@ -15,7 +15,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Specifies the tables that hold state mapped by the annotated entity. *

- * If Hibernate is not aware of that a certain table holds state mapped + * If Hibernate is not aware that a certain table holds state mapped * by an entity class, then {@linkplain org.hibernate.FlushMode#AUTO * auto-flush} might not occur when it should, and queries against the * entity might return stale data. diff --git a/hibernate-core/src/main/java/org/hibernate/boot/model/internal/BinderHelper.java b/hibernate-core/src/main/java/org/hibernate/boot/model/internal/BinderHelper.java index 32d661bf2e..1322397908 100644 --- a/hibernate-core/src/main/java/org/hibernate/boot/model/internal/BinderHelper.java +++ b/hibernate-core/src/main/java/org/hibernate/boot/model/internal/BinderHelper.java @@ -125,8 +125,8 @@ public class BinderHelper { * property of an {@code @Embeddable}, then every column of that * embeddable must occur in the list of referenced columns, and the * order of the columns must line up! Some of these limitations - * could be relaxed using by writing a better algorithm for building - * the synthetic {@link Component}. + * could be relaxed by writing a better algorithm for building the + * synthetic {@link Component}. */ public static void createSyntheticPropertyReference( AnnotatedJoinColumns joinColumns, diff --git a/hibernate-core/src/main/java/org/hibernate/type/package-info.java b/hibernate-core/src/main/java/org/hibernate/type/package-info.java index 6b8df552b1..7393a45785 100644 --- a/hibernate-core/src/main/java/org/hibernate/type/package-info.java +++ b/hibernate-core/src/main/java/org/hibernate/type/package-info.java @@ -75,7 +75,7 @@ * *

Built-in converters for boolean mappings

* - * In older version of Hibernate there were dedicated {@code Type}s mapping Java + * In older versions of Hibernate there were dedicated {@code Type}s mapping Java * {@code boolean} to {@code char(1)} or {@code integer} database columns. These * have now been replaced by the converters: *