fix a typo

Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
Gavin King 2024-04-21 23:01:29 +02:00
parent e086074adf
commit 6bf9dbb051
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ Hibernate has a slightly easier way to do it:
boolean authorsFetched = Hibernate.isInitialized(book.getAuthors()); boolean authorsFetched = Hibernate.isInitialized(book.getAuthors());
---- ----
But the static methods of the link:{doc-javadoc-url}org/hibernate/Hibernate.html[`Hibernate`] class let us do a lot more, and it's worth getting a bit familiar them. But the static methods of the link:{doc-javadoc-url}org/hibernate/Hibernate.html[`Hibernate`] class let us do a lot more, and it's worth getting a bit familiar with them.
Of particular interest are the operations which let us work with unfetched collections without fetching their state from the database. Of particular interest are the operations which let us work with unfetched collections without fetching their state from the database.
For example, consider this code: For example, consider this code: