From baa41412614fb3f0925fa2fe5b48b71a7aaf3cc3 Mon Sep 17 00:00:00 2001 From: Albert Huzejrovic Date: Tue, 10 Oct 2023 22:18:29 +0200 Subject: [PATCH] HHH-17304 Fix typos in Introduction guide --- documentation/src/main/asciidoc/introduction/Entities.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/src/main/asciidoc/introduction/Entities.adoc b/documentation/src/main/asciidoc/introduction/Entities.adoc index 9b296e8bd3..31a695a268 100644 --- a/documentation/src/main/asciidoc/introduction/Entities.adoc +++ b/documentation/src/main/asciidoc/introduction/Entities.adoc @@ -809,7 +809,7 @@ The types defined by the JDBC specification are enumerated by the integer type c Each JDBC type is an abstraction of a commonly-available type in SQL. For example, `Types.VARCHAR` represents the SQL type `VARCHAR` (or `VARCHAR2` on Oracle). -Since Hibernate understand more SQL types than JDBC, there's an extended list of integer type codes in the class `org.hibernate.type.SqlTypes`. +Since Hibernate understands more SQL types than JDBC, there's an extended list of integer type codes in the class `org.hibernate.type.SqlTypes`. For example, `SqlTypes.GEOMETRY` represents the spatial data type `GEOMETRY`. **** @@ -918,7 +918,7 @@ Later, in <>, we'll see a couple of different options. An attribute of embeddable type represents a relationship between a Java object with a persistent identity, and a Java object with no persistent identity. We can think of it as a whole/part relationship. The embeddable object belongs to the entity, and can't be shared with other entity instances. -And it exits for only as long as its parent entity exists. +And it exists for only as long as its parent entity exists. Next we'll discuss a different kind of relationship: a relationship between Java objects which each have their own distinct persistent identity and persistence lifecycle. @@ -1134,7 +1134,7 @@ class Author { } ---- -Here, the `Author` table has a foreign key column holding the identifier of the associated `Publisher`. +Here, the `Author` table has a foreign key column holding the identifier of the associated `Person`. [TIP] // .One-to-one associations are a way to represent subtyping