HHH-17328 - Fix a couple of doc erratas

Signed-off-by: Jan Schatteman <jschatte@redhat.com>
This commit is contained in:
Jan Schatteman 2023-10-25 14:10:33 +02:00 committed by Jan Schatteman
parent da070f8f5a
commit fa5f0f75c2
2 changed files with 2 additions and 2 deletions

View File

@ -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]
====

View File

@ -12,7 +12,7 @@ import org.hibernate.type.descriptor.java.JavaTypedExpressible;
/**
* Hibernate understands mapping a collection into 4 parts<ol>
* <li>The key - the foreign-key defining the association to the owner</li>
* <li>The element - for Map's this is analogous to the value</li>
* <li>The element - for Maps this is analogous to the value</li>
* <li>The index - the List/array index or Map key</li>
* <li>The collection-id - this is only relevant for id-bag mappings</li>
* </ol>