From fa5f0f75c2ca33459396a59a77a0ca80b5b84860 Mon Sep 17 00:00:00 2001 From: Jan Schatteman Date: Wed, 25 Oct 2023 14:10:33 +0200 Subject: [PATCH] HHH-17328 - Fix a couple of doc erratas Signed-off-by: Jan Schatteman --- .../src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc | 2 +- .../java/org/hibernate/metamodel/mapping/CollectionPart.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc b/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc index 844c56bea4..cfc07e4f57 100644 --- a/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc +++ b/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc @@ -290,7 +290,7 @@ the sub-type Class. Hibernate allows the creation of Jakarta Persistence fetch/load graphs by parsing a textual representation of the graph. Generally speaking, the textual representation of a graph is a comma-separated list of attribute names, optionally including any sub-graph specifications. -`org.hibernate.graph.EntityGraphParser` is the starting point for such parsing operations. +`org.hibernate.graph.GraphParser` is the starting point for such parsing operations. [NOTE] ==== diff --git a/hibernate-core/src/main/java/org/hibernate/metamodel/mapping/CollectionPart.java b/hibernate-core/src/main/java/org/hibernate/metamodel/mapping/CollectionPart.java index 678ebdb25d..802c0451ff 100644 --- a/hibernate-core/src/main/java/org/hibernate/metamodel/mapping/CollectionPart.java +++ b/hibernate-core/src/main/java/org/hibernate/metamodel/mapping/CollectionPart.java @@ -12,7 +12,7 @@ import org.hibernate.type.descriptor.java.JavaTypedExpressible; /** * Hibernate understands mapping a collection into 4 parts
    *
  1. The key - the foreign-key defining the association to the owner
  2. - *
  3. The element - for Map's this is analogous to the value
  4. + *
  5. The element - for Maps this is analogous to the value
  6. *
  7. The index - the List/array index or Map key
  8. *
  9. The collection-id - this is only relevant for id-bag mappings
  10. *