fix typos

This commit is contained in:
Gavin 2023-01-23 16:48:50 +01:00
parent 6e590a0149
commit ea6d76b9b4
3 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
/** /**
* Specifies the tables that hold state mapped by the annotated entity. * Specifies the tables that hold state mapped by the annotated entity.
* <p> * <p>
* 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 * by an entity class, then {@linkplain org.hibernate.FlushMode#AUTO
* auto-flush} might not occur when it should, and queries against the * auto-flush} might not occur when it should, and queries against the
* entity might return stale data. * entity might return stale data.

View File

@ -125,8 +125,8 @@ public static boolean isPrimitive(String elementTypeName) {
* property of an {@code @Embeddable}, then every column of that * property of an {@code @Embeddable}, then every column of that
* embeddable must occur in the list of referenced columns, and the * embeddable must occur in the list of referenced columns, and the
* order of the columns must line up! Some of these limitations * order of the columns must line up! Some of these limitations
* could be relaxed using by writing a better algorithm for building * could be relaxed by writing a better algorithm for building the
* the synthetic {@link Component}. * synthetic {@link Component}.
*/ */
public static void createSyntheticPropertyReference( public static void createSyntheticPropertyReference(
AnnotatedJoinColumns joinColumns, AnnotatedJoinColumns joinColumns,

View File

@ -75,7 +75,7 @@
* *
* <h3>Built-in converters for boolean mappings</h3> * <h3>Built-in converters for boolean mappings</h3>
* *
* 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 * {@code boolean} to {@code char(1)} or {@code integer} database columns. These
* have now been replaced by the converters: * have now been replaced by the converters:
* <ul> * <ul>